5 overrides of Method
PresentationCore (2)
Core\CSharp\MS\Internal\IO\Packaging\PseudoWebRequest.cs (1)
218public override string Method
Core\CSharp\System\IO\Packaging\PackWebRequest.cs (1)
345public override string Method
System (3)
net\System\Net\filewebrequest.cs (1)
162public override string Method {
net\System\Net\FtpWebRequest.cs (1)
285public override string Method {
net\System\Net\HttpWebRequest.cs (1)
2516public override string Method {
6 writes to Method
PresentationCore (1)
Core\CSharp\System\IO\Packaging\PackWebRequest.cs (1)
353GetRequest().Method = value;
System (1)
net\System\Net\webclient.cs (1)
287request.Method = m_Method;
System.Web.Services (4)
System\Web\Services\Discovery\DiscoveryClientProtocol.cs (1)
234request.Method = "GET";
System\Web\Services\Protocols\HttpGetClientProtocol.cs (1)
30request.Method = "GET";
System\Web\Services\Protocols\HttpPostClientProtocol.cs (1)
30request.Method = "POST";
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
533request.Method = "POST";
5 references to Method
PresentationCore (1)
Core\CSharp\System\IO\Packaging\PackWebRequest.cs (1)
349return GetRequest().Method;
System (4)
net\System\Net\Cache\FtpRequestCacheValidator.cs (3)
79string method = Request.Method.ToUpper(CultureInfo.InvariantCulture); 379if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_not_updated_based_on_policy, Request.Method)); 412if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_removed_existing_based_on_method, Request.Method));
net\System\Net\Cache\HttpRequestCacheValidator.cs (1)
192string method = Request.Method.ToUpper(CultureInfo.InvariantCulture);