1 write to _stream
PresentationFramework (1)
MS\Internal\Navigation\BindStream.cs (1)
33
_stream
= stream;
25 references to _stream
PresentationFramework (25)
MS\Internal\Navigation\BindStream.cs (25)
92
return
_stream
.CanRead;
103
return
_stream
.CanSeek;
114
return
_stream
.CanWrite;
125
return
_stream
.Length;
136
return
_stream
.Position;
140
_stream
.Position = value;
165
return
_stream
.BeginRead(buffer, offset, count, callback, state);
185
return
_stream
.BeginWrite(buffer, offset, count, callback, state);
193
_stream
.Close();
223
return
_stream
.EndRead(asyncResult);
234
_stream
.EndWrite(asyncResult);
246
return
_stream
.Equals(obj);
254
_stream
.Flush();
263
return
_stream
.GetHashCode();
293
return
_stream
.InitializeLifetimeService();
309
int bytes =
_stream
.Read(buffer, offset, count);
336
int val =
_stream
.ReadByte();
364
return
_stream
.Seek(offset, origin);
375
_stream
.SetLength(value);
384
return
_stream
.ToString();
399
_stream
.Write(buffer, offset, count);
410
_stream
.WriteByte(value);
426
return
_stream
;
438
if (
_stream
!= null)
440
IStreamInfo streamInfo =
_stream
as IStreamInfo;