Click or drag to resize
ProviderSessionRegisterService Method (String, Identity)

Attempts to register the service identified by serviceName and blocks until the service is either registered successfully or has failed to be registered. The specified 'providerIdentity' is used to verify permissions to provide the service being registered. Returns true if the service is registered successfully and false if the service cannot be registered successfully.

serviceName must be a full qualified service name. That is, it must be of form "//{namespace}/{service-name}".

This method does not return until a SERVICE_STATUS event has been generated. Note that if the session was created in asynchronous mode, the event may be processed before the function returns.

When providerIdentity is null the session identity will be used if it's been authorized.

Namespace:  Bloomberglp.Blpapi
Assembly:  Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.24.5.1
Syntax
public bool RegisterService(
	string serviceName,
	Identity providerIdentity
)

Parameters

serviceName
Type: SystemString
providerIdentity
Type: Bloomberglp.BlpapiIdentity

Return Value

Type: Boolean
true on success and false otherwise

Implements

IProviderSessionRegisterService(String, Identity)
Exceptions
ExceptionCondition
InvalidOperationException The session is not started.
See Also