3 writes to stream
System.Runtime.Serialization (3)
System\Xml\XmlStreamNodeWriter.cs (3)
37
this.
stream
= stream;
56
stream
= value;
775
stream
= null;
17 references to stream
System.Runtime.Serialization (17)
System\Xml\XmlStreamNodeWriter.cs (17)
52
return
stream
;
80
return (int)
stream
.Position + offset;
179
IAsyncResult result =
stream
.BeginWrite(buffer, 0, this.offset, onFlushBufferComplete, this);
185
stream
.EndWrite(result);
208
thisPtr.
stream
.EndWrite(result);
360
stream
.Write(byteBuffer, byteOffset, byteCount);
467
result = writer.
stream
.BeginWrite(this.byteBuffer, this.byteOffset, this.byteCount, PrepareAsyncCompletion(onHandleWrite), this);
474
writer.
stream
.EndWrite(result);
494
stream
.Write(buffer, 0, bufferLength);
503
stream
.Write(buffer, 0, byteCount);
544
stream
.Write(chars, charOffset, charCount);
695
stream
.Write(buffer, 0, offset);
742
result = this.writer.
stream
.BeginWrite(writer.buffer, 0, writer.offset, PrepareAsyncCompletion(onComplete), this);
749
this.writer.
stream
.EndWrite(result);
764
stream
.Flush();
769
if (
stream
!= null)
773
stream
.Close();