1 write to _stream
PresentationFramework (1)
src\Framework\MS\Internal\Navigation\BindStream.cs (1)
40
_stream
= stream;
26 references to _stream
PresentationFramework (26)
src\Framework\MS\Internal\Navigation\BindStream.cs (26)
99
return
_stream
.CanRead;
110
return
_stream
.CanSeek;
121
return
_stream
.CanWrite;
132
return
_stream
.Length;
143
return
_stream
.Position;
147
_stream
.Position = value;
172
return
_stream
.BeginRead(buffer, offset, count, callback, state);
192
return
_stream
.BeginWrite(buffer, offset, count, callback, state);
200
_stream
.Close();
234
return
_stream
.CreateObjRef(requestedType);
246
return
_stream
.EndRead(asyncResult);
257
_stream
.EndWrite(asyncResult);
269
return
_stream
.Equals(obj);
277
_stream
.Flush();
286
return
_stream
.GetHashCode();
319
return
_stream
.InitializeLifetimeService();
335
int bytes =
_stream
.Read(buffer, offset, count);
362
int val =
_stream
.ReadByte();
390
return
_stream
.Seek(offset, origin);
401
_stream
.SetLength(value);
410
return
_stream
.ToString();
425
_stream
.Write(buffer, offset, count);
436
_stream
.WriteByte(value);
452
return
_stream
;
464
if (
_stream
!= null)
466
IStreamInfo streamInfo =
_stream
as IStreamInfo;