ChunkedByteArray Constructor (Int32, Byte[])
Creates a new instance of the ChunkedByteArray object, using the specified maximum chunk size and data to chunk.
Namespace: Microsoft.WindowsServerSolutions.Settings
Assembly: SettingsObjectModel (in SettingsObjectModel.dll)
Syntax
public ChunkedByteArray(
int maxChunkSize,
byte[] dataToChunk
)
public:
ChunkedByteArray(
int maxChunkSize,
array<unsigned char>^ dataToChunk
)
Public Sub New (
maxChunkSize As Integer,
dataToChunk As Byte()
)
Parameters
maxChunkSize
Type: System.Int32The maximum chunk size.
dataToChunk
Type: System.Byte[]The data to chunk.
See Also
ChunkedByteArray Overload
ChunkedByteArray Class
Microsoft.WindowsServerSolutions.Settings Namespace
Return to top