1 write to _stream
PresentationFramework (1)
MS\Internal\AppModel\BamlStream.cs (1)
34
_stream
= stream;
21 references to _stream
PresentationFramework (21)
MS\Internal\AppModel\BamlStream.cs (21)
69
get { return
_stream
.CanRead; }
77
get { return
_stream
.CanSeek; }
85
get { return
_stream
.CanWrite; }
93
get { return
_stream
.Length; }
101
get { return
_stream
.Position; }
102
set {
_stream
.Position = value; }
120
return
_stream
.BeginRead(buffer, offset, count, callback, state);
134
return
_stream
.BeginWrite(buffer, offset, count, callback, state);
142
_stream
.Close();
152
return
_stream
.EndRead(asyncResult);
162
_stream
.EndWrite(asyncResult);
172
return
_stream
.Equals(obj);
180
_stream
.Flush();
188
return
_stream
.GetHashCode();
200
return
_stream
.Read(buffer, offset, count);
208
return
_stream
.ReadByte();
219
return
_stream
.Seek(offset, origin);
229
_stream
.SetLength(value);
237
return
_stream
.ToString();
249
_stream
.Write(buffer, offset, count);
259
_stream
.WriteByte(value);