 | MemoryPipeRead Method |
Reads data from the pipe.
Namespace: Capgemini.CommonObjectUtilsAssembly: Capgemini.CommonObjectUtils (in Capgemini.CommonObjectUtils.dll) Version: 1.3.0.0
Syntaxpublic byte[] Read(
int count
)
Public Function Read (
count As Integer
) As Byte()
public:
array<unsigned char>^ Read(
int count
)
member Read :
count : int -> byte[]
Parameters
- count
- Type: SystemInt32
The number of bytes to read from the pipe.
Return Value
Type:
ByteAn array containing the read bytes.
ExceptionsException | Condition |
---|
ArgumentOutOfRangeException |
This is thrown if the caller has requested more data than the pipe contains.
|
See Also