ElementSetElement Method (String, Int32) |
Note: This API is now obsolete.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.24.6.1
Syntax [ObsoleteAttribute("Deprecated, use SetElement(Name, int) instead.")]
public abstract void SetElement(
string name,
int value
)
<ObsoleteAttribute("Deprecated, use SetElement(Name, int) instead.")>
Public MustOverride Sub SetElement (
name As String,
value As Integer
)
public:
[ObsoleteAttribute(L"Deprecated, use SetElement(Name, int) instead.")]
virtual void SetElement(
String^ name,
int value
) abstract
[<ObsoleteAttribute("Deprecated, use SetElement(Name, int) instead.")>]
abstract SetElement :
name : string *
value : int -> unit
Parameters
- name
- Type: SystemString
The Name of the sub-element to set.
- value
- Type: SystemInt32
The value to set to.
Exceptions Exception | Condition |
---|
NotFoundException |
The named sub-element cannot be found.
|
InvalidConversionException |
The element specified by name
cannot be initialized with the specified value.
|
NotSupportedException |
This element is not a sequence or choice
or if this element is read-only.
|
See Also