Base64Binary Constructor (byte[])Base64Binary Constructor (Byte())Base64Binary Constructor (array<byte>^)

Initializes a new instance of the Base64BinaryBase64BinaryBase64Binary struct from the specified byteBytebyte array.

Syntax

Public Sub New ( _
    value As Byte[] _
)
public Base64Binary(
    byte[] value
)
public:
Base64Binary(
    array<byte> value
)
 

Parameters

value

Type: System.Byte[]System.Byte()array<System::Byte>^

The value.

Exceptions

ExceptionCondition
ArgumentNullExceptionArgumentNullExceptionArgumentNullExceptionRaised when value is null a null reference (Nothing in Visual Basic) nullptr.

Remarks

This instance maintains a reference to value. It does not copy to value.