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