2 writes to _bodyWriter
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (2)
934
_bodyWriter
= bodyWriter;
1056
_bodyWriter
= null;
12 references to _bodyWriter
dotnet-svcutil-lib (12)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (12)
964
return
_bodyWriter
.IsFault;
974
return
_bodyWriter
.IsEmpty;
1013
if (
_bodyWriter
.IsBuffered)
1015
bufferedBodyWriter =
_bodyWriter
;
1019
bufferedBodyWriter =
_bodyWriter
.CreateBufferedCopy(maxBufferSize);
1061
_bodyWriter
.WriteBodyContents(writer);
1066
return
_bodyWriter
.WriteBodyContentsAsync(writer);
1083
return
_bodyWriter
.BeginWriteBodyContents(writer, callback, state);
1088
_bodyWriter
.EndWriteBodyContents(result);
1093
if (
_bodyWriter
.IsBuffered)
1095
_bodyWriter
.WriteBodyContents(writer);
1107
return
_bodyWriter
;