C# Class newtelligence.DasBlog.Web.Services.Rsd.RsdApiCollection

A collection of elements of type RsdApi
Inheritance: System.Collections.CollectionBase
Show file Open project: AArnott/dasblog Class Usage Examples

Public Methods

Method Description
Add ( RsdApi value ) : void

Adds an instance of type RsdApi to the end of this RsdApiCollection.

AddRange ( RsdApi items ) : void

Adds the elements of an array to the end of this RsdApiCollection.

AddRange ( RsdApiCollection items ) : void

Adds the elements of another RsdApiCollection to the end of this RsdApiCollection.

Contains ( RsdApi value ) : bool

Determines whether a specfic RsdApi value is in this RsdApiCollection.

GetEnumerator ( ) : RsdApiCollection.Enumerator

Returns an enumerator that can iterate through the elements of this RsdApiCollection.

IndexOf ( RsdApi value ) : int

Return the zero-based index of the first occurrence of a specific value in this RsdApiCollection

Insert ( int index, RsdApi value ) : void

Inserts an element into the RsdApiCollection at the specified index

Remove ( RsdApi value ) : void

Removes the first occurrence of a specific RsdApi from this RsdApiCollection.

RsdApiCollection ( ) : System

Initializes a new empty instance of the RsdApiCollection class.

RsdApiCollection ( RsdApi items ) : System

Initializes a new instance of the RsdApiCollection class, containing elements copied from an array.

RsdApiCollection ( RsdApiCollection items ) : System

Initializes a new instance of the RsdApiCollection class, containing elements copied from another instance of RsdApiCollection

this ( int index ) : RsdApi

Gets or sets the RsdApi at the given index in this RsdApiCollection.

Method Details

Add() public method

Adds an instance of type RsdApi to the end of this RsdApiCollection.
public Add ( RsdApi value ) : void
value RsdApi /// The RsdApi to be added to the end of this RsdApiCollection. ///
return void

AddRange() public method

Adds the elements of an array to the end of this RsdApiCollection.
public AddRange ( RsdApi items ) : void
items RsdApi /// The array whose elements are to be added to the end of this RsdApiCollection. ///
return void

AddRange() public method

Adds the elements of another RsdApiCollection to the end of this RsdApiCollection.
public AddRange ( RsdApiCollection items ) : void
items RsdApiCollection /// The RsdApiCollection whose elements are to be added to the end of this RsdApiCollection. ///
return void

Contains() public method

Determines whether a specfic RsdApi value is in this RsdApiCollection.
public Contains ( RsdApi value ) : bool
value RsdApi /// The RsdApi value to locate in this RsdApiCollection. ///
return bool

GetEnumerator() public method

Returns an enumerator that can iterate through the elements of this RsdApiCollection.
public GetEnumerator ( ) : RsdApiCollection.Enumerator
return RsdApiCollection.Enumerator

IndexOf() public method

Return the zero-based index of the first occurrence of a specific value in this RsdApiCollection
public IndexOf ( RsdApi value ) : int
value RsdApi /// The RsdApi value to locate in the RsdApiCollection. ///
return int

Insert() public method

Inserts an element into the RsdApiCollection at the specified index
public Insert ( int index, RsdApi value ) : void
index int /// The index at which the RsdApi is to be inserted. ///
value RsdApi /// The RsdApi to insert. ///
return void

Remove() public method

Removes the first occurrence of a specific RsdApi from this RsdApiCollection.
public Remove ( RsdApi value ) : void
value RsdApi /// The RsdApi value to remove from this RsdApiCollection. ///
return void

RsdApiCollection() public method

Initializes a new empty instance of the RsdApiCollection class.
public RsdApiCollection ( ) : System
return System

RsdApiCollection() public method

Initializes a new instance of the RsdApiCollection class, containing elements copied from an array.
public RsdApiCollection ( RsdApi items ) : System
items RsdApi /// The array whose elements are to be added to the new RsdApiCollection. ///
return System

RsdApiCollection() public method

Initializes a new instance of the RsdApiCollection class, containing elements copied from another instance of RsdApiCollection
public RsdApiCollection ( RsdApiCollection items ) : System
items RsdApiCollection /// The RsdApiCollection whose elements are to be added to the new RsdApiCollection. ///
return System

this() public method

Gets or sets the RsdApi at the given index in this RsdApiCollection.
public this ( int index ) : RsdApi
index int
return RsdApi