| Subscription Constructor (String, CorrelationID, Boolean) |
Note: This API is now obsolete.
Deprecated since 3.25.2. Usage of pre-resolved topics is no longer supported.
use
Subscription(String, CorrelationID) instead.
Creates a Subscription object with the specified
subscriptionString, the specified
correlationID for
correlation, and the specified
isResolved flag. The
isResolved
flag is now deprecated. Setting this flag to 'true' would not prevent the
normal resolution process.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.26.3.64-experimental+d7d4d9bba07b94fd0a19ff78810b8add95447f66
Syntax[ObsoleteAttribute("Deprecated since 3.25.2. Use Subscription(string, CorrelationID) instead")]
public Subscription(
string subscriptionString,
CorrelationID correlationID,
bool isResolved
)<ObsoleteAttribute("Deprecated since 3.25.2. Use Subscription(string, CorrelationID) instead")>
Public Sub New (
subscriptionString As String,
correlationID As CorrelationID,
isResolved As Boolean
)public:
[ObsoleteAttribute(L"Deprecated since 3.25.2. Use Subscription(string, CorrelationID) instead")]
Subscription(
String^ subscriptionString,
CorrelationID^ correlationID,
bool isResolved
)
[<ObsoleteAttribute("Deprecated since 3.25.2. Use Subscription(string, CorrelationID) instead")>]
new :
subscriptionString : string *
correlationID : CorrelationID *
isResolved : bool -> SubscriptionParameters
- subscriptionString
- Type: SystemString
string representing the data to be subscribed
- correlationID
- Type: Bloomberglp.BlpapiCorrelationID
the correlation id - isResolved
- Type: SystemBoolean
whether the resolution phase can be skipped because the
subscriptionString contains a pre-resolved topic
See Also