XmlSerializationReader.ToByteArrayBase64 Method

Definition

Reads the current value and returns it as a base-64 byte array.

Overloads

ToByteArrayBase64(String)

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

Produces a base-64 byte array from an input string.

ToByteArrayBase64(Boolean)

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

Instructs the XmlReader to read the string value at its current position and return it as a base-64 byte array.

Remarks

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

ToByteArrayBase64(String)

Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs

Produces a base-64 byte array from an input string.

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

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

Parameters

value
String

A string to translate into a base-64 byte array.

Returns

Byte[]

A base-64 byte array.

Remarks

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

The ToByteArrayBase64 method is static.

Applies to

ToByteArrayBase64(Boolean)

Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs

Instructs the XmlReader to read the string value at its current position and return it as a base-64 byte array.

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

protected:
 cli::array <System::Byte> ^ ToByteArrayBase64(bool isNull);
protected byte[]? ToByteArrayBase64 (bool isNull);
protected byte[] ToByteArrayBase64 (bool isNull);
member this.ToByteArrayBase64 : bool -> byte[]
Protected Function ToByteArrayBase64 (isNull As Boolean) As Byte()

Parameters

isNull
Boolean

true to return null; false to return a base-64 byte array.

Returns

Byte[]

A base-64 byte array; otherwise, null if the value of the isNull parameter is true.

Remarks

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

Applies to