3 overrides of BeginGetResponse
System.Net.Requests (3)
artifacts\obj\System.Net.Requests\Debug\net10.0\System.Net.Requests.notsupported.cs (3)
51
public override System.IAsyncResult
BeginGetResponse
(System.AsyncCallback? callback, object? state) { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); }
148
public override System.IAsyncResult
BeginGetResponse
(System.AsyncCallback? callback, object? state) { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); }
239
public 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)
854
IAsyncResult 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)
178
entry.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)
275
request.
BeginGetResponse
(BeginEndAwaitableAdapter.Callback, awaitable);
1201
request.
BeginGetResponse
(iar =>
System.Windows.Forms (1)
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
599
req.
BeginGetResponse
(new AsyncCallback(GetResponseCallback), req);