Request Interface |
Namespace: Bloomberglp.Blpapi
The Request type exposes the following members.
Name | Description | |
---|---|---|
AsElement |
Gets the contents of this Request as an element.
| |
Elements |
Gets the enumerable collection of all elements in this request.
| |
ItemString |
This is the same as GetElement(name) | |
ItemName |
This is the same as GetElement(name) | |
Operation |
Gets the Operation this Request is intended to invoke on the
associated Service.
|
Name | Description | |
---|---|---|
Append(String, Constant) | Appends the specified value to the named array element of this request.
| |
Append(String, Datetime) | Appends the specified value to the named array element of this request.
| |
Append(String, Name) | Appends the specified value to the named array element of this request.
| |
Append(String, Boolean) | Appends the specified value to the named array element of this request.
| |
Append(String, Byte) | Appends the specified value to the named array element of this request.
| |
Append(String, Char) | Appends the specified value to the named array element of this request.
| |
Append(String, Double) | Appends the specified value to the named array element of this request.
| |
Append(String, Int32) | Appends the specified value to the named array element of this request.
| |
Append(String, Int64) | Appends the specified value to the named array element of this request.
| |
Append(String, Single) | Appends the specified value to the named array element of this request.
| |
Append(String, String) | Appends the specified value to the named array element of this request.
| |
Append(Name, Constant) | Appends the specified value to the named array element of this request.
| |
Append(Name, Datetime) | Appends the specified value to the named array element of this request.
| |
Append(Name, Name) | Appends the specified value to the named array element of this request.
| |
Append(Name, Boolean) | Appends the specified value to the named array element of this request.
| |
Append(Name, Byte) | Appends the specified value to the named array element of this request.
| |
Append(Name, Char) | Appends the specified value to the named array element of this request.
| |
Append(Name, Double) | Appends the specified value to the named array element of this request.
| |
Append(Name, Int32) | Appends the specified value to the named array element of this request.
| |
Append(Name, Int64) | Appends the specified value to the named array element of this request.
| |
Append(Name, Single) | Appends the specified value to the named array element of this request.
| |
Append(Name, String) | Appends the specified value to the named array element of this request.
| |
GetElement(String) | Returns the modifiable element of this request having
the specified name creating it if doesn't exist already.
| |
GetElement(Name) | Returns the modifiable element of this request having
the specified name creating it if doesn't exist already.
| |
HasElement(String) |
Returns true if this request contains the element having the specified
name false otherwise.
| |
HasElement(Name) |
Returns true if this request contains the element having the specified
name false otherwise.
| |
Print(Stream) | Prints the contents of this message to the specified Stream.
| |
Print(TextWriter) | Prints the contents of this message to the specified TextWriter.
| |
Set(String, Constant) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, Datetime) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, Name) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, Boolean) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, Byte) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, Char) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, Double) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, Int32) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, Int64) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, Single) | Sets the element of this request having the specified name to the
specified value.
| |
Set(String, String) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Constant) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Datetime) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Name) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Boolean) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Byte) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Char) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Double) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Int32) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Int64) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, Single) | Sets the element of this request having the specified name to the
specified value.
| |
Set(Name, String) | Sets the element of this request having the specified name to the
specified value.
|
Request objects are created using Service.CreateRequest(string) or Service.CreateAuthorizationRequest(). They are used with Session.SendRequest(Request, UserHandle, EventQueue, CorrelationID, String) or Session.SendAuthorizationRequest(Request, UserHandle, EventQueue, CorrelationID, String). The Request object contains the parameters for a single request to a single service. Once a Request has been created its fields can be populated directly using the convenience functions set() and append() or using the Element interface on the Element returned by AsElement.
The schema for the Request can be queried using the Element interface on the Element returned by AsElement.