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

◆ MimePartSentCallback()

void System.Net.Mime.MimeMultiPart.MimePartSentCallback ( IAsyncResult result)
inlinepackage

Definition at line 122 of file MimeMultiPart.cs.

123 {
124 if (result.CompletedSynchronously)
125 {
126 return;
127 }
128 ((MimePartContext)result.AsyncState)._completedSynchronously = false;
129 try
130 {
132 }
133 catch (Exception e)
134 {
135 Complete(result, e);
136 }
137 }
void Complete(IAsyncResult result, Exception e)
void MimePartSentCallbackHandler(IAsyncResult result)

References System.IAsyncResult.AsyncState, System.Net.Mime.MimeMultiPart.Complete(), System.IAsyncResult.CompletedSynchronously, and System.Net.Mime.MimeMultiPart.MimePartSentCallbackHandler().

Referenced by System.Net.Mime.MimeMultiPart.ContentStreamCallbackHandler().