Solid Framework SDK 10.0.12602
SDK for converting and extracting value from PDFs
Classes | Public Member Functions | Static Public Member Functions | Properties | List of all members
SolidFramework.Converters.Plumbing.IConversionResultsCollection Class Reference
Inheritance diagram for SolidFramework.Converters.Plumbing.IConversionResultsCollection:

Classes

class  IConversionResultsCollectionEnumerator
 

Public Member Functions

virtual void Dispose ()
 
 IConversionResultsCollection (global::System.Collections.ICollection c)
 
void CopyTo (SolidFramework.Converters.Plumbing.IConversionResult[] array)
 Copies all the elements of the dictionary to the specified one-dimensional array starting at the beginning.
 
void CopyTo (SolidFramework.Converters.Plumbing.IConversionResult[] array, int arrayIndex)
 Copies all the elements of the dictionary to the specified one-dimensional array starting at the specified destination array index.
 
void CopyTo (int index, SolidFramework.Converters.Plumbing.IConversionResult[] array, int arrayIndex, int count)
 Copies count countitems from the collection starting at index index to the specified one-dimensional array starting at specified destination arrayIndex index. More...
 
IConversionResultsCollectionEnumerator GetEnumerator ()
 Returns an IConversionResultsCollectionEnumerator for the collection. More...
 
void Clear ()
 
void Add (SolidFramework.Converters.Plumbing.IConversionResult x)
 
 IConversionResultsCollection (IConversionResultsCollection other)
 
 IConversionResultsCollection (int capacity)
 
void AddRange (IConversionResultsCollection values)
 
IConversionResultsCollection GetRange (int index, int count)
 
void Insert (int index, SolidFramework.Converters.Plumbing.IConversionResult x)
 
void InsertRange (int index, IConversionResultsCollection values)
 
void RemoveAt (int index)
 
void RemoveRange (int index, int count)
 
void Reverse ()
 
void Reverse (int index, int count)
 
void SetRange (int index, IConversionResultsCollection values)
 
bool Contains (SolidFramework.Converters.Plumbing.IConversionResult value)
 
int IndexOf (SolidFramework.Converters.Plumbing.IConversionResult value)
 
int LastIndexOf (SolidFramework.Converters.Plumbing.IConversionResult value)
 
bool Remove (SolidFramework.Converters.Plumbing.IConversionResult value)
 

Static Public Member Functions

static implicit operator IConversionResultsCollection (SolidFramework.Converters.Plumbing.IConversionResult[] inVal)
 
static implicit operator SolidFramework.Converters.Plumbing.IConversionResult[] (IConversionResultsCollection inVal)
 
static implicit operator IConversionResultsCollection (global::System.Collections.Generic.List< SolidFramework.Converters.Plumbing.IConversionResult > inVal)
 
static implicit operator global::System.Collections.Generic.List< SolidFramework.Converters.Plumbing.IConversionResult > (IConversionResultsCollection inVal)
 
static IConversionResultsCollection Repeat (SolidFramework.Converters.Plumbing.IConversionResult value, int count)
 

Properties

bool IsFixedSize [get]
 Gets whether the collection is a fixed size. This method always returns false.
 
bool IsReadOnly [get]
 Gets whether the collection is readonly. This method always returns false.
 
SolidFramework.Converters.Plumbing.IConversionResult this[int index] [getset]
 Gets the SolidFramework.Converters.Plumbing.IConversionResult at the specified index in the collection. More...
 
int Capacity [getset]
 Gets or sets the maximum number of items that can be stored in the collection. If the value is set to a number less than the current size of the colelction then an exception will be thrown. More...
 
int Count [get]
 Gets the number of items in the collection.
 
bool IsSynchronized [get]
 Gets a value indicating whether access to the ICollection is synchronized (thread safe). This always returns false.
 

Member Function Documentation

◆ CopyTo()

void SolidFramework.Converters.Plumbing.IConversionResultsCollection.CopyTo ( int  index,
SolidFramework.Converters.Plumbing.IConversionResult[]  array,
int  arrayIndex,
int  count 
)

Copies count countitems from the collection starting at index index to the specified one-dimensional array starting at specified destination arrayIndex index.

Parameters
indexIndex of the first item in this collection that should be copied.
arrayA one-dimensional array into which the items should be copied.
arrayIndexIndex of the destination array to where the first item should be copied.
countNumber of items to be copied.

◆ GetEnumerator()

IConversionResultsCollectionEnumerator SolidFramework.Converters.Plumbing.IConversionResultsCollection.GetEnumerator ( )

Returns an IConversionResultsCollectionEnumerator for the collection.

Returns
An IConversionResultsCollectionEnumerator for the collection.

Property Documentation

◆ Capacity

int SolidFramework.Converters.Plumbing.IConversionResultsCollection.Capacity
getset

Gets or sets the maximum number of items that can be stored in the collection. If the value is set to a number less than the current size of the colelction then an exception will be thrown.

Exceptions
System.ArgumentOutOfRangeExceptionOccurs if the capacity is set to a number less than the current size.

◆ this[int index]

SolidFramework.Converters.Plumbing.IConversionResult SolidFramework.Converters.Plumbing.IConversionResultsCollection.this[int index]
getset

Gets the SolidFramework.Converters.Plumbing.IConversionResult at the specified index in the collection.

Parameters
indexThe index of the item to be returned.
Returns
The SolidFramework.Converters.Plumbing.IConversionResult at the specified index.