Class EntityObjectPropertyCollection
Inheritance
System.Object
System.Collections.ObjectModel.Collection<EntityObjectProperty>
EntityObjectPropertyCollection
Implements
System.Collections.Generic.IList<EntityObjectProperty>
System.Collections.Generic.ICollection<EntityObjectProperty>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<EntityObjectProperty>
System.Collections.Generic.IReadOnlyCollection<EntityObjectProperty>
System.Collections.Generic.IEnumerable<EntityObjectProperty>
System.Collections.IEnumerable
Inherited Members
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.Add(Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.Clear()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.CopyTo(Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty[], System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.Contains(Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.GetEnumerator()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.IndexOf(Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.Insert(System.Int32, Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.Remove(Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.RemoveAt(System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.ClearItems()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.InsertItem(System.Int32, Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.RemoveItem(System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.SetItem(System.Int32, Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IEnumerable.GetEnumerator()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IList.get_Item(System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IList.Add(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IList.Contains(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IList.IndexOf(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IList.Remove(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.Count
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.Items
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.Item[System.Int32]
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.Generic.ICollection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.IsReadOnly
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.ICollection.IsSynchronized
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.ICollection.SyncRoot
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IList.Item[System.Int32]
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.System.Collections.IList.IsReadOnly
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Business.EntityObjectProperty>.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 EntityObjectPropertyCollection : Collection<EntityObjectProperty>, IList<EntityObjectProperty>, ICollection<EntityObjectProperty>, IList, ICollection, IReadOnlyList<EntityObjectProperty>, IReadOnlyCollection<EntityObjectProperty>, IEnumerable<EntityObjectProperty>, IEnumerable
Constructors
EntityObjectPropertyCollection()
Initializes a new instance of the EntityObjectPropertyCollection class.
Declaration
public EntityObjectPropertyCollection()
Properties
Item[String]
Gets or sets the System.Object with the specified name.
Declaration
public EntityObjectProperty this[string name] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Property Value
Type | Description |
---|---|
EntityObjectProperty |
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(EntityObjectProperty[])
Adds the range.
Declaration
public void AddRange(params EntityObjectProperty[] properties)
Parameters
Type | Name | Description |
---|---|---|
EntityObjectProperty[] | 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 |
Remove(String)
Removes the specified name.
Declaration
public void Remove(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
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