Class MemberCollection
Represents the collection of member objects.
Inheritance
System.Object
System.Collections.ObjectModel.Collection<
Member>
MemberCollection
Implements
System.Collections.Generic.IList<
Member>
System.Collections.Generic.ICollection<
Member>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<
Member>
System.Collections.Generic.IReadOnlyCollection<
Member>
System.Collections.Generic.IEnumerable<
Member>
System.Collections.IEnumerable
Inherited Members
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.Add(Syncfusion.Olap.Data.Member)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.Clear()
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.ClearItems()
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.Contains(Syncfusion.Olap.Data.Member)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.CopyTo(Syncfusion.Olap.Data.Member[], System.Int32)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.Count
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.GetEnumerator()
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.IndexOf(Syncfusion.Olap.Data.Member)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.Insert(System.Int32, Syncfusion.Olap.Data.Member)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.Item[System.Int32]
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.Items
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.Remove(Syncfusion.Olap.Data.Member)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.RemoveAt(System.Int32)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.RemoveItem(System.Int32)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.Generic.ICollection<Syncfusion.Olap.Data.Member>.IsReadOnly
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.ICollection.IsSynchronized
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.ICollection.SyncRoot
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IEnumerable.GetEnumerator()
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.Add(System.Object)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.Contains(System.Object)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.get_Item(System.Int32)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.IndexOf(System.Object)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.IsFixedSize
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.IsReadOnly
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.Item[System.Int32]
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.Remove(System.Object)
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class MemberCollection : Collection<Member>, IList<Member>, ICollection<Member>, IList, ICollection, IReadOnlyList<Member>, IReadOnlyCollection<Member>, IEnumerable<Member>, IEnumerable
Constructors
MemberCollection()
Declaration
public MemberCollection()
MemberCollection(Object)
Declaration
public MemberCollection(object parent_)
Parameters
Type |
Name |
Description |
System.Object |
parent_ |
The parent object.
|
Methods
AddRange(MemberCollection)
Adds the elements of the specified collection to the end of the System.Collections.Generic.List<T>.
Declaration
public void AddRange(MemberCollection memberCollection)
Parameters
Type |
Name |
Description |
MemberCollection |
memberCollection |
The collection of members.
|
FindByName(String)
Finds the member by its name.
Declaration
public Member FindByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
The name of the member object.
|
Returns
Type |
Description |
Member |
The member object.
|
FindByUniqueName(String)
Finds the member by its unique name.
Declaration
public Member FindByUniqueName(string uniqueName)
Parameters
Type |
Name |
Description |
System.String |
uniqueName |
The unique name of the member object.
|
Returns
Type |
Description |
Member |
The member object.
|
InsertItem(Int32, Member)
Inserts an element into the System.Collections.ObjectModel.Collection<T> at
the specified index.
Declaration
protected override void InsertItem(int index, Member item)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
The zero-based index at which item should be inserted.
|
Member |
item |
The object to insert. The value can be null for reference types.
|
Overrides
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.InsertItem(System.Int32, Syncfusion.Olap.Data.Member)
SetItem(Int32, Member)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, Member item)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
The zero-based index of the element to replace.
|
Member |
item |
The new value for the element at the specified index. The value can be null for reference types.
|
Overrides
System.Collections.ObjectModel.Collection<Syncfusion.Olap.Data.Member>.SetItem(System.Int32, Syncfusion.Olap.Data.Member)
Exceptions
Type |
Condition |
System.ArgumentOutOfRangeException |
index is less than zero.-or-index is greater than System.Collections.ObjectModel.Collection<T>.Count.
|
Implements
System.Collections.Generic.IList<>
System.Collections.Generic.ICollection<>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<T>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
Extension Methods