1 write to _stream
IIS.Common.TestLib (1)
TestConnections.cs (1)
48
_stream
= new NetworkStream(_socket, ownsSocket: false);
7 references to _stream
IIS.Common.TestLib (7)
TestConnections.cs (7)
52
public Stream Stream =>
_stream
;
56
_stream
.Dispose();
70
await
_stream
.WriteAsync(bytes, index, 1).ConfigureAwait(false);
71
await
_stream
.FlushAsync().ConfigureAwait(false);
80
return (await
_stream
.ReadAsync(bytes, 0, 1) == 1) ? bytes[0] : -1;
131
var task =
_stream
.ReadAsync(actual, offset, actual.Length - offset);
166
var task =
_stream
.ReadAsync(actual, offset, 1);