XmlSerializationWriter.FromByteArrayBase64(Byte[]) Method

Definition

Processes a base-64 byte array.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected:
 static cli::array <System::Byte> ^ FromByteArrayBase64(cli::array <System::Byte> ^ value);
protected static byte[] FromByteArrayBase64 (byte[] value);
static member FromByteArrayBase64 : byte[] -> byte[]
Protected Shared Function FromByteArrayBase64 (value As Byte()) As Byte()

Parameters

value
Byte[]

A base-64 Byte array.

Returns

Byte[]

The same byte array that was passed in as an argument.

Remarks

The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

Rather than return a string as other similar "from" methods, the static FromByteArrayBase64 method returns the original byte[] object to improve performance and conserve memory.

Applies to