2 instantiations of KeyInstance
System.Data.Services (2)
System\Data\Services\KeyInstance.cs (2)
28
private static readonly KeyInstance Empty = new
KeyInstance
();
280
instance = new
KeyInstance
(namedValues, positionalValues);
20 references to KeyInstance
System.Data.Services (20)
System\Data\Services\KeyInstance.cs (6)
28
private static readonly
KeyInstance
Empty = new KeyInstance();
36
/// <summary>Initializes a new empty <see cref="
KeyInstance
"/> instance.</summary>
41
/// <summary>Initializes a new <see cref="
KeyInstance
"/> instance.</summary>
112
internal static bool TryParseKeysFromUri(string text, out
KeyInstance
instance)
128
internal static bool TryParseNullableTokens(string text, out
KeyInstance
instance)
196
private static bool TryParseFromUri(string text, bool allowNamedValues, bool allowNull, out
KeyInstance
instance)
System\Data\Services\Parsing\RequestQueryParser.cs (1)
273
internal LambdaExpression BuildSkipTokenFilter(OrderingInfo topLevelOrderingInfo,
KeyInstance
k)
System\Data\Services\RequestQueryProcessor.cs (4)
890
KeyInstance
k = null;
891
WebUtil.CheckSyntaxValid(
KeyInstance
.TryParseNullableTokens(skipToken, out k));
922
KeyInstance
k = null;
923
WebUtil.CheckSyntaxValid(
KeyInstance
.TryParseNullableTokens(skipToken, out k));
System\Data\Services\RequestUriProcessor.cs (5)
376
internal static
KeyInstance
ExtractKeyValuesFromUri(Uri absoluteRequestUri, IDataService service, out string containerName)
946
private static
KeyInstance
ExtractKeyValues(ResourceType resourceType, string filter)
948
KeyInstance
key;
950
WebUtil.CheckSyntaxValid(
KeyInstance
.TryParseKeysFromUri(filter, out key));
1215
private static IQueryable SelectResourceByKey(IQueryable query, ResourceType resourceType,
KeyInstance
key)
System\Data\Services\SegmentInfo.cs (2)
35
private
KeyInstance
key;
97
internal
KeyInstance
Key
System\Data\Services\UpdatableWrapper.cs (2)
346
KeyInstance
keyInstance = null;
360
success =
KeyInstance
.TryParseNullableTokens(Uri.UnescapeDataString(strippedETag), out keyInstance);