Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ DownloadDataAsyncCallback()

void System.Net.WebClient.DownloadDataAsyncCallback ( byte[] returnBytes,
Exception exception,
object state )
inlineprivate

Definition at line 1564 of file WebClient.cs.

1565 {
1566 AsyncOperation asyncOperation = (AsyncOperation)state;
1567 DownloadDataCompletedEventArgs eventArgs = new DownloadDataCompletedEventArgs(returnBytes, exception, _canceled, asyncOperation.UserSuppliedState);
1569 }
SendOrPostCallback _downloadDataOperationCompleted
Definition WebClient.cs:98
void InvokeOperationCompleted(AsyncOperation asyncOp, SendOrPostCallback callback, AsyncCompletedEventArgs eventArgs)

References System.Net.WebClient._canceled, System.Net.WebClient._downloadDataOperationCompleted, System.exception, System.Net.WebClient.InvokeOperationCompleted(), System.state, and System.ComponentModel.AsyncOperation.UserSuppliedState.

Referenced by System.Net.WebClient.DownloadDataAsync().