| 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
Syntaxpublic interface ConstraintsList : IDictionary<string, Constraint>,
ICollection<KeyValuePair<string, Constraint>>, IEnumerable<KeyValuePair<string, Constraint>>,
IEnumerable
Public Interface ConstraintsList
Inherits IDictionary(Of String, Constraint), ICollection(Of KeyValuePair(Of String, Constraint)),
IEnumerable(Of KeyValuePair(Of String, Constraint)), IEnumerable
public interface class ConstraintsList : IDictionary<String^, Constraint^>,
ICollection<KeyValuePair<String^, Constraint^>>, IEnumerable<KeyValuePair<String^, Constraint^>>,
IEnumerable
type ConstraintsList =
interface
interface IDictionary<string, Constraint>
interface ICollection<KeyValuePair<string, Constraint>>
interface IEnumerable<KeyValuePair<string, Constraint>>
interface IEnumerable
endThe ConstraintsList type exposes the following members.
Properties|
| Name | Description |
|---|
 | Item |
This is the same as this[string].
|
Top
Methods|
| Name | Description |
|---|
 | ContainsKey |
This is the same as ContainsKey(string).
|
 | TryGetValue |
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