Interface IGlobalStringListCollection
Inherited Members
System.Collections.Generic.ICollection<FChoice.Foundation.Clarify.DataObjects.IGlobalStringList>.Add(FChoice.Foundation.Clarify.DataObjects.IGlobalStringList)
System.Collections.Generic.ICollection<FChoice.Foundation.Clarify.DataObjects.IGlobalStringList>.Clear()
System.Collections.Generic.ICollection<FChoice.Foundation.Clarify.DataObjects.IGlobalStringList>.Contains(FChoice.Foundation.Clarify.DataObjects.IGlobalStringList)
System.Collections.Generic.ICollection<FChoice.Foundation.Clarify.DataObjects.IGlobalStringList>.CopyTo(FChoice.Foundation.Clarify.DataObjects.IGlobalStringList[], System.Int32)
System.Collections.Generic.ICollection<FChoice.Foundation.Clarify.DataObjects.IGlobalStringList>.Remove(FChoice.Foundation.Clarify.DataObjects.IGlobalStringList)
System.Collections.Generic.ICollection<FChoice.Foundation.Clarify.DataObjects.IGlobalStringList>.Count
System.Collections.Generic.ICollection<FChoice.Foundation.Clarify.DataObjects.IGlobalStringList>.IsReadOnly
System.Collections.Generic.IEnumerable<FChoice.Foundation.Clarify.DataObjects.IGlobalStringList>.GetEnumerator()
Assembly: fcSDK.dll
Syntax
public interface IGlobalStringListCollection : ICollection<IGlobalStringList>, IEnumerable<IGlobalStringList>, IEnumerable
Properties
Capacity
Declaration
int Capacity { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Item[Int32]
Declaration
IGlobalStringList this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
Item[String]
Declaration
IGlobalStringList this[string title] { get; }
Parameters
Type |
Name |
Description |
System.String |
title |
|
Property Value
Methods
AddRange(IEnumerable<IGlobalStringList>)
Declaration
void AddRange(IEnumerable<IGlobalStringList> collection)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerable<IGlobalStringList> |
collection |
|
AsReadOnly()
Declaration
ReadOnlyCollection<IGlobalStringList> AsReadOnly()
Returns
Type |
Description |
System.Collections.ObjectModel.ReadOnlyCollection<IGlobalStringList> |
|
BinarySearch(IGlobalStringList)
Declaration
int BinarySearch(IGlobalStringList item)
Parameters
Returns
Type |
Description |
System.Int32 |
|
BinarySearch(IGlobalStringList, IComparer<IGlobalStringList>)
Declaration
int BinarySearch(IGlobalStringList item, IComparer<IGlobalStringList> comparer)
Parameters
Returns
Type |
Description |
System.Int32 |
|
BinarySearch(Int32, Int32, IGlobalStringList, IComparer<IGlobalStringList>)
Declaration
int BinarySearch(int index, int count, IGlobalStringList item, IComparer<IGlobalStringList> comparer)
Parameters
Returns
Type |
Description |
System.Int32 |
|
CopyTo(IGlobalStringList[])
Declaration
void CopyTo(IGlobalStringList[] array)
Parameters
CopyTo(Int32, IGlobalStringList[], Int32, Int32)
Declaration
void CopyTo(int index, IGlobalStringList[] array, int arrayIndex, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
IGlobalStringList[] |
array |
|
System.Int32 |
arrayIndex |
|
System.Int32 |
count |
|
Exists(Predicate<IGlobalStringList>)
Declaration
bool Exists(Predicate<IGlobalStringList> match)
Parameters
Returns
Type |
Description |
System.Boolean |
|
Find(Predicate<IGlobalStringList>)
Declaration
IGlobalStringList Find(Predicate<IGlobalStringList> match)
Parameters
Returns
FindAll(Predicate<IGlobalStringList>)
Declaration
List<IGlobalStringList> FindAll(Predicate<IGlobalStringList> match)
Parameters
Returns
FindIndex(Int32, Int32, Predicate<IGlobalStringList>)
Declaration
int FindIndex(int startIndex, int count, Predicate<IGlobalStringList> match)
Parameters
Type |
Name |
Description |
System.Int32 |
startIndex |
|
System.Int32 |
count |
|
System.Predicate<IGlobalStringList> |
match |
|
Returns
Type |
Description |
System.Int32 |
|
FindIndex(Int32, Predicate<IGlobalStringList>)
Declaration
int FindIndex(int startIndex, Predicate<IGlobalStringList> match)
Parameters
Type |
Name |
Description |
System.Int32 |
startIndex |
|
System.Predicate<IGlobalStringList> |
match |
|
Returns
Type |
Description |
System.Int32 |
|
FindIndex(Predicate<IGlobalStringList>)
Declaration
int FindIndex(Predicate<IGlobalStringList> match)
Parameters
Returns
Type |
Description |
System.Int32 |
|
FindLast(Predicate<IGlobalStringList>)
Declaration
IGlobalStringList FindLast(Predicate<IGlobalStringList> match)
Parameters
Returns
FindLastIndex(Int32, Int32, Predicate<IGlobalStringList>)
Declaration
int FindLastIndex(int startIndex, int count, Predicate<IGlobalStringList> match)
Parameters
Type |
Name |
Description |
System.Int32 |
startIndex |
|
System.Int32 |
count |
|
System.Predicate<IGlobalStringList> |
match |
|
Returns
Type |
Description |
System.Int32 |
|
FindLastIndex(Int32, Predicate<IGlobalStringList>)
Declaration
int FindLastIndex(int startIndex, Predicate<IGlobalStringList> match)
Parameters
Type |
Name |
Description |
System.Int32 |
startIndex |
|
System.Predicate<IGlobalStringList> |
match |
|
Returns
Type |
Description |
System.Int32 |
|
FindLastIndex(Predicate<IGlobalStringList>)
Declaration
int FindLastIndex(Predicate<IGlobalStringList> match)
Parameters
Returns
Type |
Description |
System.Int32 |
|
ForEach(Action<IGlobalStringList>)
Declaration
void ForEach(Action<IGlobalStringList> action)
Parameters
GetItemByIndex(Int32)
Declaration
IGlobalStringList GetItemByIndex(int index)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Returns
GetRange(Int32, Int32)
Declaration
List<IGlobalStringList> GetRange(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
Returns
IndexOf(IGlobalStringList)
Declaration
int IndexOf(IGlobalStringList item)
Parameters
Returns
Type |
Description |
System.Int32 |
|
IndexOf(IGlobalStringList, Int32)
Declaration
int IndexOf(IGlobalStringList item, int index)
Parameters
Returns
Type |
Description |
System.Int32 |
|
IndexOf(IGlobalStringList, Int32, Int32)
Declaration
int IndexOf(IGlobalStringList item, int index, int count)
Parameters
Returns
Type |
Description |
System.Int32 |
|
Insert(Int32, IGlobalStringList)
Declaration
void Insert(int index, IGlobalStringList item)
Parameters
InsertRange(Int32, IEnumerable<IGlobalStringList>)
Declaration
void InsertRange(int index, IEnumerable<IGlobalStringList> collection)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Collections.Generic.IEnumerable<IGlobalStringList> |
collection |
|
LastIndexOf(IGlobalStringList)
Declaration
int LastIndexOf(IGlobalStringList item)
Parameters
Returns
Type |
Description |
System.Int32 |
|
LastIndexOf(IGlobalStringList, Int32)
Declaration
int LastIndexOf(IGlobalStringList item, int index)
Parameters
Returns
Type |
Description |
System.Int32 |
|
LastIndexOf(IGlobalStringList, Int32, Int32)
Declaration
int LastIndexOf(IGlobalStringList item, int index, int count)
Parameters
Returns
Type |
Description |
System.Int32 |
|
RemoveAll(Predicate<IGlobalStringList>)
Declaration
int RemoveAll(Predicate<IGlobalStringList> match)
Parameters
Returns
Type |
Description |
System.Int32 |
|
RemoveAt(Int32)
Declaration
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
RemoveRange(Int32, Int32)
Declaration
void RemoveRange(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
Reverse()
Declaration
Reverse(Int32, Int32)
Declaration
void Reverse(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
Sort()
Declaration
Sort(IComparer<IGlobalStringList>)
Declaration
void Sort(IComparer<IGlobalStringList> comparer)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IComparer<IGlobalStringList> |
comparer |
|
Sort(Comparison<IGlobalStringList>)
Declaration
void Sort(Comparison<IGlobalStringList> comparison)
Parameters
Sort(Int32, Int32, IComparer<IGlobalStringList>)
Declaration
void Sort(int index, int count, IComparer<IGlobalStringList> comparer)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
System.Collections.Generic.IComparer<IGlobalStringList> |
comparer |
|
ToArray()
Declaration
IGlobalStringList[] ToArray()
Returns
TrimExcess()
Declaration
TrueForAll(Predicate<IGlobalStringList>)
Declaration
bool TrueForAll(Predicate<IGlobalStringList> match)
Parameters
Returns
Type |
Description |
System.Boolean |
|