Table of Contents

Class StringValueCollection

Namespace
Sisk.Core.Entity
Assembly
Sisk.Core.dll

Represents an collection of StringValue.

public sealed class StringValueCollection : IEnumerable<StringValue>, IEnumerable<KeyValuePair<string, string>>, IReadOnlyDictionary<string, StringValue>, IReadOnlyCollection<KeyValuePair<string, StringValue>>, IEnumerable<KeyValuePair<string, StringValue>>, IEnumerable
Inheritance
StringValueCollection
Implements
Inherited Members

Constructors

StringValueCollection(IDictionary<string, string?>)

Creates an new StringValueCollection instance with values from another IDictionary instance.

Fields

Empty

Represents an empty StringValueCollection field.

Properties

Count

Gets the number of items defined in this StringValueCollection.

this[string]

Gets an StringValue item by their key name.

Methods

AsDictionary()

Gets an IDictionary object with the data of this StringValueCollection with their keys and values.

AsNameValueCollection()

Gets an NameValueCollection with the data of this StringValueCollection.

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.