1 write to _stream
PresentationFramework (1)
MS\Internal\AppModel\BamlStream.cs (1)
33
_stream
= stream;
21 references to _stream
PresentationFramework (21)
MS\Internal\AppModel\BamlStream.cs (21)
68
get { return
_stream
.CanRead; }
76
get { return
_stream
.CanSeek; }
84
get { return
_stream
.CanWrite; }
92
get { return
_stream
.Length; }
100
get { return
_stream
.Position; }
101
set {
_stream
.Position = value; }
119
return
_stream
.BeginRead(buffer, offset, count, callback, state);
133
return
_stream
.BeginWrite(buffer, offset, count, callback, state);
141
_stream
.Close();
151
return
_stream
.EndRead(asyncResult);
161
_stream
.EndWrite(asyncResult);
171
return
_stream
.Equals(obj);
179
_stream
.Flush();
187
return
_stream
.GetHashCode();
199
return
_stream
.Read(buffer, offset, count);
207
return
_stream
.ReadByte();
218
return
_stream
.Seek(offset, origin);
228
_stream
.SetLength(value);
236
return
_stream
.ToString();
248
_stream
.Write(buffer, offset, count);
258
_stream
.WriteByte(value);