Reputation: 187
Is StreamReader.Read() a blocking method especially if applied to a NetworkStream?
StreamReader.Read()
NetworkStream
Upvotes: 1
Views: 1585
Reputation: 1503419
Yes - it blocks until one of the follow conditions is satisfied:
Upvotes: 6