Method | Description | |
---|---|---|
ReadAllBytes ( this stream ) : byte[] |
Read all the bytes in a Stream from its current location to a byte[] array
|
|
ReadAllBytesAsync ( this stream ) : Task |
Asynchronously read all the bytes in a Stream from its current location to a byte[] array
|
|
ReadAllText ( this stream ) : string |
Read the contents of a Stream from its current location into a String
|
|
ReadAllTextAsync ( this stream ) : Task |
Asynchronously read the contents of a Stream from its current location into a String
|
public static ReadAllBytes ( this stream ) : byte[] | ||
stream | this | |
return | byte[] |
public static ReadAllBytesAsync ( this stream ) : Task |
||
stream | this | |
return | Task |
public static ReadAllText ( this stream ) : string | ||
stream | this | |
return | string |
public static ReadAllTextAsync ( this stream ) : Task |
||
stream | this | |
return | Task |