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.25.11.64-experimental+d519cd77c15f00eb425bcde0dbe3273921f5910b
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, Constant).
Top
Remarks
This is a read-only object. Any IDictionary writing methods throws InvalidOperationException exception.
See Also