1 write to stream
System (1)
net\System\Net\mail\DelegatedStream.cs (1)
27
this.
stream
= stream;
20 references to stream
System (20)
net\System\Net\mail\DelegatedStream.cs (20)
35
return this.
stream
;
43
return this.
stream
.CanRead;
51
return this.
stream
.CanSeek;
59
return this.
stream
.CanWrite;
70
return this.
stream
.Length;
81
return this.
stream
.Position;
88
this.
stream
.Position = value;
103
result = this.
stream
.BeginRead (buffer, offset, count, callback, state);
119
result = this.
stream
.BeginWrite (buffer, offset, count, callback, state);
128
this.
stream
.Close();
136
int read = this.
stream
.EndRead (asyncResult);
145
this.
stream
.EndWrite (asyncResult);
150
this.
stream
.Flush();
155
return this.
stream
.FlushAsync(cancellationToken);
163
int read = this.
stream
.Read(buffer, offset, count);
172
return this.
stream
.ReadAsync(buffer, offset, count, cancellationToken);
180
long position = this.
stream
.Seek(offset, origin);
189
this.
stream
.SetLength(value);
197
this.
stream
.Write(buffer, offset, count);
205
return this.
stream
.WriteAsync(buffer, offset, count, cancellationToken);