SessionUnsubscribe Method (IListSubscription) |
Cancels previous requests for asynchronous topic updates associated
with the correlation ids listed in the specified subscriptionList.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.20.3.1
Syntax public void Unsubscribe(
IList<Subscription> subscriptionList
)
Public Sub Unsubscribe (
subscriptionList As IList(Of Subscription)
)
public:
virtual void Unsubscribe(
IList<Subscription^>^ subscriptionList
) sealed
abstract Unsubscribe :
subscriptionList : IList<Subscription> -> unit
override Unsubscribe :
subscriptionList : IList<Subscription> -> unit
Parameters
- subscriptionList
- Type: System.Collections.GenericIListSubscription
A list of correlationIds of subscriptions
that are to be unsubscribed.
Implements
ISessionUnsubscribe(IListSubscription)Exceptions Exception | Condition |
---|
InvalidOperationException |
Session is not started.
|
Remarks
This operation provides a convenience for cancelling Subscriptions using
a list of subscriptions.
See
Cancel(IList, string) operation for more information on the
handling of cancel requests and other important notes.
See Also