1 write to _stream
PresentationFramework (1)
MS\Internal\Navigation\BindStream.cs (1)
37
_stream
= stream;
25 references to _stream
PresentationFramework (25)
MS\Internal\Navigation\BindStream.cs (25)
96
return
_stream
.CanRead;
107
return
_stream
.CanSeek;
118
return
_stream
.CanWrite;
129
return
_stream
.Length;
140
return
_stream
.Position;
144
_stream
.Position = value;
169
return
_stream
.BeginRead(buffer, offset, count, callback, state);
189
return
_stream
.BeginWrite(buffer, offset, count, callback, state);
197
_stream
.Close();
227
return
_stream
.EndRead(asyncResult);
238
_stream
.EndWrite(asyncResult);
250
return
_stream
.Equals(obj);
258
_stream
.Flush();
267
return
_stream
.GetHashCode();
297
return
_stream
.InitializeLifetimeService();
313
int bytes =
_stream
.Read(buffer, offset, count);
340
int val =
_stream
.ReadByte();
368
return
_stream
.Seek(offset, origin);
379
_stream
.SetLength(value);
388
return
_stream
.ToString();
403
_stream
.Write(buffer, offset, count);
414
_stream
.WriteByte(value);
430
return
_stream
;
442
if (
_stream
!= null)
444
IStreamInfo streamInfo =
_stream
as IStreamInfo;