Class
SetConditionHashCollection

Represents collection IList container for SetCondition and OlapSetCondition items, SetCondition

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.Pivot.Core.dll

Syntax:

cs-api-definition
[CollectionDataContract]
public class SetConditionHashCollection : IList, ICollection, IList<object>, ICollection<object>, IEnumerable<object>, IEnumerable

Inheritance: objectSetConditionHashCollection

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

Constructors

SetConditionHashCollection()

Initializes a new instance of the SetConditionHashCollection class.

Declaration

cs-api-definition
public SetConditionHashCollection()

SetConditionHashCollection(IEnumerable)

Initializes a new instance of the SetConditionHashCollection class.

Declaration

cs-api-definition
public SetConditionHashCollection(IEnumerable items)

Parameters

items

IEnumerable

The items to add to the SetConditionHashCollection

Properties

Count

Declaration

cs-api-definition
public int Count { get; }

Property Value

int

Implements ICollection.CountICollection<object>.Count

IsFixedSize

Declaration

cs-api-definition
public bool IsFixedSize { get; }

Property Value

bool

Implements IList.IsFixedSize

IsReadOnly

Declaration

cs-api-definition
public bool IsReadOnly { get; }

Property Value

bool

Implements IList.IsReadOnlyICollection<object>.IsReadOnly

IsSynchronized

Declaration

cs-api-definition
public bool IsSynchronized { get; }

Property Value

bool

Implements ICollection.IsSynchronized

SyncRoot

Declaration

cs-api-definition
public object SyncRoot { get; }

Property Value

object

Implements ICollection.SyncRoot

this[int]

Declaration

cs-api-definition
public object this[int index] { get; set; }

Parameters

index

int

Property Value

object

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

Methods

Add(object)

Declaration

cs-api-definition
public int Add(object value)

Parameters

value

object

Returns

int

Implements IList.Add(object)

Clear()

Declaration

cs-api-definition
public void Clear()

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

Contains(object)

Declaration

cs-api-definition
public bool Contains(object value)

Parameters

value

object

Returns

bool

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

CopyTo(Array, int)

Declaration

cs-api-definition
[SuppressMessage("Microsoft.Naming", "CA2204:Literals should be spelled correctly", MessageId = "CopyTo", Justification = "Design choice.")]
public void CopyTo(Array array, int index)

Parameters

array

Array

index

int

Implements ICollection.CopyTo(Array, int)

GetEnumerator()

Declaration

cs-api-definition
public IEnumerator GetEnumerator()

Returns

IEnumerator

Implements IEnumerable.GetEnumerator()

IndexOf(object)

Declaration

cs-api-definition
[SuppressMessage("Microsoft.Naming", "CA2204:Literals should be spelled correctly", MessageId = "IndexOf", Justification = "Design choice.")]
public int IndexOf(object value)

Parameters

value

object

Returns

int

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

Insert(int, object)

Declaration

cs-api-definition
public void Insert(int index, object value)

Parameters

index

int

value

object

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

Remove(object)

Declaration

cs-api-definition
public void Remove(object value)

Parameters

value

object

Implements IList.Remove(object)

RemoveAt(int)

Declaration

cs-api-definition
[SuppressMessage("Microsoft.Naming", "CA2204:Literals should be spelled correctly", MessageId = "RemoveAt", Justification = "Design choice.")]
public void RemoveAt(int index)

Parameters

index

int

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