NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICryptoStream.Write (Byte[])

This function is used to put write data on the object.

[Visual Basic]
Overloads Sub Write( _
   ByVal rgbInputData() As Byte _
)
[C#]
void Write(
   byte[] rgbInputData
);
[C++]
void Write(
   unsigned char* rgbInputData[]
) = 0;
[JScript]
function Write(
   rgbInputData : Byte[]
);

Parameters

rgbInputData
array of bytes to write to the stream

Return Value

The function returns the count of bytes that are written.

Exceptions

Exception Type Condition
CryptographicUnexpectedOperationException write after closing

See Also

ICryptoStream Interface | ICryptoStream Members | System.Security.Cryptography Namespace | ICryptoStream.Write Overload List