3 overrides of BeginGetResponse
System.Net.Requests (3)
artifacts\obj\System.Net.Requests\Debug\net10.0\System.Net.Requests.notsupported.cs (3)
51public override System.IAsyncResult BeginGetResponse(System.AsyncCallback? callback, object? state) { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } 148public override System.IAsyncResult BeginGetResponse(System.AsyncCallback? callback, object? state) { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } 239public override System.IAsyncResult BeginGetResponse(System.AsyncCallback? callback, object? state) { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); }
7 references to BeginGetResponse
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (1)
854IAsyncResult result = request.BeginGetResponse(Fx.ThunkCallback(new AsyncCallback(this.GetResponseCallback)), request);
PresentationCore (2)
System\IO\Packaging\PackWebResponse.cs (1)
107_webRequest.BeginGetResponse(new AsyncCallback(ResponseCallback), this);
System\Windows\Media\Imaging\BitmapDownload.cs (1)
178entry.webRequest.BeginGetResponse(_responseCallback, entry);
PresentationFramework (1)
System\Windows\Navigation\NavigationService.cs (1)
2639_request.BeginGetResponse(new AsyncCallback(HandleWebResponseOnRightDispatcher),
System.Net.WebClient (2)
System\Net\WebClient.cs (2)
275request.BeginGetResponse(BeginEndAwaitableAdapter.Callback, awaitable); 1201request.BeginGetResponse(iar =>
System.Windows.Forms (1)
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
599req.BeginGetResponse(new AsyncCallback(GetResponseCallback), req);