1 write to _stream
PresentationFramework (1)
MS\Internal\Navigation\BindStream.cs (1)
34
_stream
= stream;
25 references to _stream
PresentationFramework (25)
MS\Internal\Navigation\BindStream.cs (25)
93
return
_stream
.CanRead;
104
return
_stream
.CanSeek;
115
return
_stream
.CanWrite;
126
return
_stream
.Length;
137
return
_stream
.Position;
141
_stream
.Position = value;
166
return
_stream
.BeginRead(buffer, offset, count, callback, state);
186
return
_stream
.BeginWrite(buffer, offset, count, callback, state);
194
_stream
.Close();
224
return
_stream
.EndRead(asyncResult);
235
_stream
.EndWrite(asyncResult);
247
return
_stream
.Equals(obj);
255
_stream
.Flush();
264
return
_stream
.GetHashCode();
294
return
_stream
.InitializeLifetimeService();
310
int bytes =
_stream
.Read(buffer, offset, count);
337
int val =
_stream
.ReadByte();
365
return
_stream
.Seek(offset, origin);
376
_stream
.SetLength(value);
385
return
_stream
.ToString();
400
_stream
.Write(buffer, offset, count);
411
_stream
.WriteByte(value);
427
return
_stream
;
439
if (
_stream
!= null)
441
IStreamInfo streamInfo =
_stream
as IStreamInfo;