Class PropertyElementCollection
Represents property element collection.
Inheritance
System.Object
System.Collections.ObjectModel.Collection<PropertyElement>
PropertyElementCollection
Implements
System.Collections.Generic.IList<PropertyElement>
System.Collections.Generic.ICollection<PropertyElement>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<PropertyElement>
System.Collections.Generic.IReadOnlyCollection<PropertyElement>
System.Collections.Generic.IEnumerable<PropertyElement>
System.Collections.IEnumerable
Inherited Members
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.Add(Mediachase.BusinessFoundation.Data.Business.PropertyElement)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.Clear()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.CopyTo(Mediachase.BusinessFoundation.Data.Business.PropertyElement[], System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.Contains(Mediachase.BusinessFoundation.Data.Business.PropertyElement)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.GetEnumerator()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.IndexOf(Mediachase.BusinessFoundation.Data.Business.PropertyElement)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.Insert(System.Int32, Mediachase.BusinessFoundation.Data.Business.PropertyElement)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.Remove(Mediachase.BusinessFoundation.Data.Business.PropertyElement)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.RemoveAt(System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.ClearItems()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.InsertItem(System.Int32, Mediachase.BusinessFoundation.Data.Business.PropertyElement)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.RemoveItem(System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.SetItem(System.Int32, Mediachase.BusinessFoundation.Data.Business.PropertyElement)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IEnumerable.GetEnumerator()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.get_Item(System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.Add(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.Contains(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.IndexOf(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.Remove(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.Count
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.Items
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.Item[System.Int32]
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.Generic.ICollection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.IsReadOnly
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.ICollection.IsSynchronized
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.ICollection.SyncRoot
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.Item[System.Int32]
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.IsReadOnly
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.PropertyElement>.System.Collections.IList.IsFixedSize
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.BusinessFoundation.Data.Business
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 13.30.0Syntax
public class PropertyElementCollection : Collection<PropertyElement>, IList<PropertyElement>, ICollection<PropertyElement>, IList, ICollection, IReadOnlyList<PropertyElement>, IReadOnlyCollection<PropertyElement>, IEnumerable<PropertyElement>, IEnumerable
Constructors
PropertyElementCollection()
Initializes a new instance of the PropertyElementCollection class.
Declaration
public PropertyElementCollection()
Properties
Item[String]
Gets or sets the System.Object with the specified name.
Declaration
public PropertyElement this[string name] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Property Value
Type | Description |
---|---|
PropertyElement |
Methods
Add(String, Object)
Adds the specified name.
Declaration
public void Add(string name, object value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
System.Object | value | The value. |
AddRange(PropertyElement[])
Adds the range.
Declaration
public void AddRange(params PropertyElement[] properties)
Parameters
Type | Name | Description |
---|---|---|
PropertyElement[] | properties | The properties. |
Contains(String)
Determines whether [contains] [the specified name].
Declaration
public bool Contains(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
Returns
Type | Description |
---|---|
System.Boolean |
|
GetValue(String)
Gets the value.
Declaration
public virtual object GetValue(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
Returns
Type | Description |
---|---|
System.Object |
GetValue<T>(String)
Gets the value.
Declaration
public T GetValue<T>(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
Returns
Type | Description |
---|---|
T |
Type Parameters
Name | Description |
---|---|
T |
GetValue<T>(String, T)
Gets the value.
Declaration
public T GetValue<T>(string name, T defaultValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
T | defaultValue | The default value. |
Returns
Type | Description |
---|---|
T |
Type Parameters
Name | Description |
---|---|
T |
Implements
System.Collections.Generic.IList<T>
System.Collections.Generic.ICollection<T>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<T>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable