5 overrides of GetRequestStream
PresentationCore (2)
MS\Internal\IO\Packaging\PseudoWebRequest.cs (1)
70public override Stream GetRequestStream()
System\IO\Packaging\PackWebRequest.cs (1)
99public override Stream GetRequestStream()
System.Net.Requests (3)
artifacts\obj\System.Net.Requests\Debug\net10.0\System.Net.Requests.notsupported.cs (3)
56public override System.IO.Stream GetRequestStream() { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } 151public override System.IO.Stream GetRequestStream() { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } 245public override System.IO.Stream GetRequestStream() { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); }
2 references to GetRequestStream
System.Net.WebClient (2)
System\Net\WebClient.cs (2)
407request.GetRequestStream(), 954using (Stream writeStream = request.GetRequestStream())