Soap.XSBuiltIns.TXSHexBinary.AsByteArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property  AsByteArray: TByteDynArray read GetAsByteArray write SetAsByteArray;

C++

__property System::DynamicArray<System::Byte> AsByteArray = {read=GetAsByteArray, write=SetAsByteArray};

Properties

Type Visibility Source Unit Parent
property public
Soap.XSBuiltIns.pas
Soap.XSBuiltIns.hpp
Soap.XSBuiltIns TXSHexBinary

Description

Represents the object's value as an array of bytes.

Use AsByteArray to obtain the value of the TXSHexBinary object as an array of bytes. This value is obtained from the HexBinaryString property using the global HexToBin function. When you set AsByteArray, TXSHexBinary uses the global BinToHex function to convert the binary value to a string and sets the HexBinaryString property.

See Also