5 writes to Method
Client.ClientBase.IntegrationTests (1)
ClientBaseTestHelpers.cs (1)
107httpRequestMessage.Method = "POST";
System.ServiceModel.Http (1)
System\ServiceModel\Channels\HttpRequestMessageProperty.cs (1)
353copiedProperty.Method = Method;
System.ServiceModel.Http.Tests (3)
Channels\HttpRequestMessagePropertyTest.cs (3)
33original.Method = "GET"; 59requestMsgProperty.Method = newMethod; 67Assert.Throws<ArgumentNullException>(() => requestMsgProperty.Method = null);
5 references to Method
System.ServiceModel.Http (1)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
1170_httpRequestMessage.Method = new HttpMethod(requestProperty.Method);
System.ServiceModel.Http.Tests (4)
Channels\HttpRequestMessagePropertyTest.cs (4)
19Assert.Equal("POST", requestMsgProperty.Method); 42Assert.Equal(original.Method, copy.Method); 60Assert.Equal(newMethod, requestMsgProperty.Method);