コード例 #1
0
            static bool OnHandleFlushBufferComplete(IAsyncResult result)
            {
                WriteBytesAsyncResult thisPtr = (WriteBytesAsyncResult)result.AsyncState;

                return(thisPtr.HandleFlushBuffer(result));
            }
コード例 #2
0
            static bool OnHandleWrite(IAsyncResult result)
            {
                WriteBytesAsyncResult thisPtr = (WriteBytesAsyncResult)result.AsyncState;

                return(thisPtr.HandleWrite(result));
            }
コード例 #3
0
 public void EndWriteBytes(IAsyncResult result)
 {
     WriteBytesAsyncResult.End(result);
 }