| EventFormatterAppendMessage Method (String, Topic) |
Note: This API is now obsolete.
Appends a (empty) message of the specified 'messageType' that will
be published under the specified 'topic' to the event referenced
by this
EventFormatter. After a
message has been appended its elements can be set using the various
'SetElement' methods.
Deprecated, use
AppendMessage(Name, Topic) instead.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.21.0.1
Syntax[ObsoleteAttribute("Deprecated, use AppendMessage(Name, Topic) instead.")]
public void AppendMessage(
string messageType,
Topic topic
)<ObsoleteAttribute("Deprecated, use AppendMessage(Name, Topic) instead.")>
Public Sub AppendMessage (
messageType As String,
topic As Topic
)public:
[ObsoleteAttribute(L"Deprecated, use AppendMessage(Name, Topic) instead.")]
void AppendMessage(
String^ messageType,
Topic^ topic
)
[<ObsoleteAttribute("Deprecated, use AppendMessage(Name, Topic) instead.")>]
member AppendMessage :
messageType : string *
topic : Topic -> unit
Parameters
- messageType
- Type: SystemString
the name of the message type that needs
to be added - topic
- Type: Bloomberglp.BlpapiTopic
the corresponding topic
Exceptions| Exception | Condition |
|---|
| NotFoundException |
The specified 'messageType' is not found in the publish schema.
|
| InvalidOperationException |
The operating stack is not empty.
|
| ArgumentException |
The specified event is not a publish event.
The specified topic is not valid.
|
See Also