New to Telerik UI for WPFStart a free 30-day trial

Represents collection IList container for SetCondition and OlapSetCondition items, SetCondition

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.Pivot.Core.dll

Syntax:

C#
[CollectionDataContract]
public class SetConditionHashCollection : IList, ICollection, IList<object>, ICollection<object>, IEnumerable<object>, IEnumerable

Inheritance: objectSetConditionHashCollection

Implements: ICollectionICollection<object>IEnumerableIEnumerable<object>IListIList<object>...

Constructors

Initializes a new instance of the SetConditionHashCollection class.

C#
public SetConditionHashCollection()

Initializes a new instance of the SetConditionHashCollection class.

C#
public SetConditionHashCollection(IEnumerable items)
Parameters:itemsIEnumerable

The items to add to the SetConditionHashCollection

Properties

C#
public int Count { get; }

Implements: ICollection.CountICollection<object>.Count

C#
public bool IsFixedSize { get; }

Implements: IList.IsFixedSize

C#
public bool IsReadOnly { get; }

Implements: IList.IsReadOnlyICollection<object>.IsReadOnly

C#
public bool IsSynchronized { get; }

Implements: ICollection.IsSynchronized

C#
public object SyncRoot { get; }

Implements: ICollection.SyncRoot

C#
public object this[int index] { get; set; }
Parameters:indexint

Implements: IList.this[int]IList<object>.this[int]

Methods

C#
public int Add(object value)
Parameters:valueobjectReturns:

int

Implements: IList.Add(object)

C#
public void Clear()

Implements: IList.Clear()ICollection<object>.Clear()

C#
public bool Contains(object value)
Parameters:valueobjectReturns:

bool

Implements: IList.Contains(object)ICollection<object>.Contains(object)

C#
public void CopyTo(Array array, int index)
Parameters:arrayArrayindexint

Implements: ICollection.CopyTo(Array, int)

C#
public IEnumerator GetEnumerator()
Returns:

IEnumerator

Implements: IEnumerable.GetEnumerator()

C#
public int IndexOf(object value)
Parameters:valueobjectReturns:

int

Implements: IList.IndexOf(object)IList<object>.IndexOf(object)

C#
public void Insert(int index, object value)
Parameters:indexintvalueobject

Implements: IList.Insert(int, object)IList<object>.Insert(int, object)

C#
public void Remove(object value)
Parameters:valueobject

Implements: IList.Remove(object)

C#
public void RemoveAt(int index)
Parameters:indexint

Implements: IList.RemoveAt(int)IList<object>.RemoveAt(int)