Class StringValueCollection
Represents an collection of StringValue.
public sealed class StringValueCollection : StringKeyStore, IDictionary<string, string[]>, ICollection<KeyValuePair<string, string[]>>, IEnumerable<KeyValuePair<string, string[]>>, IEnumerable
- Inheritance
-
StringValueCollection
- Implements
- Inherited Members
Constructors
- StringValueCollection()
Creates an new empty StringValueCollection.
- StringValueCollection(IDictionary<string, string?>)
Creates an new StringValueCollection instance with values from another IDictionary instance.
Properties
- this[string]
Gets or sets an StringValue item by their key name.
Methods
- GetItem(string)
Gets an StringValue from their key name. If the object was not found by their name, an empty non-null StringValue with no value is returned.
- GetItems(string)
Gets an array of StringValue from their key name. If the object was not found by their name, an empty array of StringValue is returned.
- TryGetValue(string, out StringValue)
Tries to get the last StringValue associated with the specified key.