Class ParameterCollection
Collection of parameters that an SDK client will send to a service.
public class ParameterCollection : SortedDictionary<string, ParameterValue>, IDictionary<string, ParameterValue>, ICollection<KeyValuePair<string, ParameterValue>>, IDictionary, ICollection, IReadOnlyDictionary<string, ParameterValue>, IReadOnlyCollection<KeyValuePair<string, ParameterValue>>, IEnumerable<KeyValuePair<string, ParameterValue>>, IEnumerable
- Inheritance
-
ParameterCollection
- Implements
- Inherited Members
Constructors
ParameterCollection()
Constructs empty ParameterCollection.
public ParameterCollection()
Methods
Add(string, List<double>)
Adds a parameter with a list-of-doubles value.
public void Add(string key, List<double> values)
Parameters
Add(string, List<string>)
Adds a parameter with a list-of-strings value.
public void Add(string key, List<string> values)
Parameters
Add(string, string)
Adds a parameter with a string value.
public void Add(string key, string value)
Parameters
GetSortedParametersList()
Converts the current parameters into a list of key-value pairs.
public List<KeyValuePair<string, string>> GetSortedParametersList()