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