Click or drag to resize
SessionSendRequest Method (Request, CorrelationID)
Sends the specified request to a service using this session.

Namespace:  Bloomberglp.Blpapi
Assembly:  Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.12.5.1
Syntax
public CorrelationID SendRequest(
	Request request,
	CorrelationID correlationId
)

Parameters

request
Type: Bloomberglp.BlpapiRequest
A filled in request that needs to be sent to the service.
correlationId
Type: Bloomberglp.BlpapiCorrelationID
A correlationId to be used to match the response.

Return Value

Type: CorrelationID
Exceptions
ExceptionCondition
InvalidOperationException The session is not started.
InvalidRequestException The request is not compliant with the schema for the request.
RequestQueueOverflowException This session has too many enqueued requests.
DuplicateCorrelationIDException The specified correlationId is already active for this Session.
Remarks
This method is the same as calling SendRequest with a null Identity, EventQueue and a null request label.
See Also