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