ElementAppendValue Method (Byte) |
Note: This API is now obsolete.
Appends the specified value to this array element.
Deprecated. Arrays of byte arrays are not supported.
This method will always throw an NotSupportedException.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.24.4.1
Syntax [ObsoleteAttribute("Deprecated, arrays of byte arrays are not supported.")]
public abstract void AppendValue(
byte[] value
)
<ObsoleteAttribute("Deprecated, arrays of byte arrays are not supported.")>
Public MustOverride Sub AppendValue (
value As Byte()
)
public:
[ObsoleteAttribute(L"Deprecated, arrays of byte arrays are not supported.")]
virtual void AppendValue(
array<unsigned char>^ value
) abstract
[<ObsoleteAttribute("Deprecated, arrays of byte arrays are not supported.")>]
abstract AppendValue :
value : byte[] -> unit
Parameters
- value
- Type: SystemByte
The appended value.
Exceptions Exception | Condition |
---|
NotSupportedException |
This is thrown in all cases.
|
InvalidConversionException |
The specified value cannot be converted to data type of the array.
|
See Also