6 references to UriTemplateMatchResultsPropertyName
System.ServiceModel.Web (6)
System\ServiceModel\Dispatcher\HelpOperationInvoker.cs (1)
37UriTemplateMatch match = (UriTemplateMatch)OperationContext.Current.IncomingMessageProperties[IncomingWebRequestContext.UriTemplateMatchResultsPropertyName];
System\ServiceModel\Dispatcher\UriTemplateDispatchFormatter.cs (1)
57string UTMRName = IncomingWebRequestContext.UriTemplateMatchResultsPropertyName;
System\ServiceModel\Dispatcher\WebHttpDispatchOperationSelector.cs (1)
310message.Properties.Add(IncomingWebRequestContext.UriTemplateMatchResultsPropertyName, match);
System\ServiceModel\Web\IncomingWebRequestContext.cs (3)
119if (this.operationContext.IncomingMessageProperties.ContainsKey(UriTemplateMatchResultsPropertyName)) 121return this.operationContext.IncomingMessageProperties[UriTemplateMatchResultsPropertyName] as UriTemplateMatch; 130this.operationContext.IncomingMessageProperties[UriTemplateMatchResultsPropertyName] = value;