| SubscriptionPreprocessMode Enumeration |
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.26.3.64-experimental+d7d4d9bba07b94fd0a19ff78810b8add95447f66
Syntaxpublic enum SubscriptionPreprocessMode
Public Enumeration SubscriptionPreprocessMode
public enum class SubscriptionPreprocessMode
type SubscriptionPreprocessMode
Members|
| Member name | Value | Description |
|---|
| FailOnFirstError | 0 |
In this mode, an exception is thrown on the first invalid entry
in the list of Subscriptions, and the
entire batch will be considered failed. Otherwise, all the
subscriptions will move forward and a null list of
SubscriptionPreprocessError is returned.
|
| ReturnIndividualErrors | 1 |
In this mode, instead of throwing exceptions, a list of
SubscriptionPreprocessError is returned, each
representing an error due to an invalid subscription in the
list of Subscriptions. The valid subscriptions will
move forward.
|
See Also