5 writes to Method
System.ServiceModel (2)
System\ServiceModel\Channels\HttpRequestContext.cs (1)
961requestProperty.Method = this.listenerHttpContext.listenerContext.Request.HttpMethod;
System\ServiceModel\Channels\HttpRequestMessageProperty.cs (1)
364copiedProperty.Method = this.Method;
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpContext.cs (1)
306requestProperty.Method = this.hostedHttpContext.HttpMethod;
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\UriTemplateClientFormatter.cs (1)
115hrmp.Method = this.method;
System\ServiceModel\Web\OutgoingWebRequestContext.cs (1)
73set { this.MessageProperty.Method = value; }
8 references to Method
System.ServiceModel (3)
System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
2532httpWebRequest.Method = requestProperty.Method;
System\ServiceModel\Diagnostics\MessageLogTraceRecord.cs (1)
332dictionaryWriter.WriteElementString(MessageLogTraceRecord.MethodElementName, requestProperty.Method);
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (1)
662action = request.Method;
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\MessageExtensionMethods.cs (2)
146Fx.Assert(requestMessageProperty.Method != null, "The HttpRequestMessageProperty class ensures the 'Method' property will never be null."); 147request.Method = new HttpMethod(requestMessageProperty.Method);
System.ServiceModel.Web (3)
System\ServiceModel\Dispatcher\WebHttpDispatchOperationSelector.cs (1)
199string method = prop.Method;
System\ServiceModel\Web\IncomingWebRequestContext.cs (1)
112get { return this.EnsureMessageProperty().Method; }
System\ServiceModel\Web\OutgoingWebRequestContext.cs (1)
72get { return this.MessageProperty.Method; }