コード例 #1
0
ファイル: OperationFormatter.cs プロジェクト: yrest/wcf
                    private static bool HandleEndOnWriteBodyContents(IAsyncResult result)
                    {
                        OnWriteBodyContentsAsyncResult thisPtr = (OnWriteBodyContentsAsyncResult)result.AsyncState;

                        thisPtr._operationFormatter.EndSerializeBodyContents(result);
                        return(true);
                    }
コード例 #2
0
ファイル: OperationFormatter.cs プロジェクト: yrest/wcf
 protected override void OnEndWriteBodyContents(IAsyncResult result)
 {
     OnWriteBodyContentsAsyncResult.End(result);
 }
コード例 #3
0
ファイル: BodyWriter.cs プロジェクト: dox0/DotNet471RS3
 protected virtual void OnEndWriteBodyContents(IAsyncResult result)
 {
     OnWriteBodyContentsAsyncResult.End(result);
 }