ReadBlockAsync() public method

public ReadBlockAsync ( char buffer, int index, int count ) : Task
buffer char
index int
count int
return Task
Example #1
0
 public override Task <int> ReadBlockAsync(char[] buffer, int index, int count)
 {
     lock (this) {
         return(reader.ReadBlockAsync(buffer, index, count));
     }
 }