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

                thisPtr.writer.stream.EndWrite(result);
                thisPtr.writer.state = ByteStreamWriterState.Content;

                return(true);
            }
コード例 #2
0
 internal void EndWriteBase64(IAsyncResult result)
 {
     WriteBase64AsyncResult.End(result);
 }