Click or drag to resize
DuplicateCorrelationIDException Class
The exception that is thrown when the correlation IDs associated with subscriptions are the same(with equal value).
Inheritance Hierarchy
SystemObject
  SystemException
    Bloomberglp.BlpapiDuplicateCorrelationIDException

Namespace:  Bloomberglp.Blpapi
Assembly:  Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.25.11.64-experimental+d519cd77c15f00eb425bcde0dbe3273921f5910b
Syntax
[SerializableAttribute]
public class DuplicateCorrelationIDException : Exception

The DuplicateCorrelationIDException type exposes the following members.

Constructors
  NameDescription
Public methodDuplicateCorrelationIDException
Construct the exception without a description.
Public methodDuplicateCorrelationIDException(String)
Construct the exception with the description string.
Protected methodDuplicateCorrelationIDException(SerializationInfo, StreamingContext)
Initializes a new instance of the DuplicateCorrelationIDException class with serialized data.
Public methodDuplicateCorrelationIDException(String, Exception)
Construct the exception with the description string and the cause exception.
Top
Properties
  NameDescription
Public propertyDescription
Return the description.
Top
Methods
  NameDescription
Public methodGetObjectData
Store object fields during the serialization process.
(Overrides ExceptionGetObjectData(SerializationInfo, StreamingContext).)
Top
Remarks
For example, CorrelationID id1 = new CorrelationID(1); CorrelationID id2 = new CorrelationID(1); . This exception is thrown when two subscirptions are with id1 and id2, respectively.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also