3 writes to stream
System.Xml (3)
System\Xml\XmlDownloadManager.cs (3)
108
this.
stream
= stream;
117
stream
= null;
129
stream
= null;
19 references to stream
System.Xml (19)
System\Xml\XmlDownloadManager.cs (19)
123
if ( disposing &&
stream
!= null ) {
127
stream
.Close();
141
return
stream
.BeginRead( buffer, offset, count, callback, state );
145
return
stream
.BeginWrite( buffer, offset, count, callback, state );
149
return
stream
.EndRead( asyncResult );
153
stream
.EndWrite( asyncResult );
157
stream
.Flush();
161
return
stream
.Read( buffer, offset, count );
165
return
stream
.ReadByte();
169
return
stream
.Seek( offset, origin );
173
stream
.SetLength( value );
177
stream
.Write( buffer, offset, count );
181
stream
.WriteByte( value );
185
get { return
stream
.CanRead; }
189
get { return
stream
.CanSeek; }
193
get { return
stream
.CanWrite; }
197
get { return
stream
.Length; }
201
get { return
stream
.Position; }
202
set {
stream
.Position = value; }