Click or drag to resize
ConstraintsList Interface
Represents a list of Constraint objects. Implements generic IDictionary interface.

Namespace:  Bloomberglp.Blpapi
Assembly:  Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.13.2.1
Syntax
public interface ConstraintsList : IDictionary<string, Constraint>, 
	ICollection<KeyValuePair<string, Constraint>>, IEnumerable<KeyValuePair<string, Constraint>>, 
	IEnumerable

The ConstraintsList type exposes the following members.

Properties
  NameDescription
Public propertyItem
This is the same as this[string].
Top
Methods
  NameDescription
Public methodContainsKey
This is the same as ContainsKey(string).
Public methodTryGetValue
This is the same as TryGetValue(string, Constatant).
Top
Remarks
This is a read-only object. Any IDictionary writing methods throws InvalidOperationException exception.
Thread Safety
Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.
See Also