Method | Description | |
---|---|---|
Add ( |
Adds an instance of type RssItem to the end of this RssItemCollection.
|
|
AddRange ( |
Adds the elements of an array to the end of this RssItemCollection.
|
|
AddRange ( |
Adds the elements of another RssItemCollection to the end of this RssItemCollection.
|
|
Contains ( |
Determines whether a specfic RssItem value is in this RssItemCollection.
|
|
GetEnumerator ( ) : |
Returns an enumerator that can iterate through the elements of this RssItemCollection.
|
|
IndexOf ( |
Return the zero-based index of the first occurrence of a specific value in this RssItemCollection
|
|
Insert ( int index, |
Inserts an element into the RssItemCollection at the specified index
|
|
Remove ( |
Removes the first occurrence of a specific RssItem from this RssItemCollection.
|
|
RssItemCollection ( ) : System |
Initializes a new empty instance of the RssItemCollection class.
|
|
RssItemCollection ( |
Initializes a new instance of the RssItemCollection class, containing elements copied from an array.
|
|
RssItemCollection ( |
Initializes a new instance of the RssItemCollection class, containing elements copied from another instance of RssItemCollection
|
|
this ( int index ) : |
Gets or sets the RssItem at the given index in this RssItemCollection.
|
public Add ( |
||
value | /// The RssItem to be added to the end of this RssItemCollection. /// | |
return | void |
public AddRange ( |
||
items | /// The array whose elements are to be added to the end of this RssItemCollection. /// | |
return | void |
public AddRange ( |
||
items | /// The RssItemCollection whose elements are to be added to the end of this RssItemCollection. /// | |
return | void |
public Contains ( |
||
value | /// The RssItem value to locate in this RssItemCollection. /// | |
return | bool |
public GetEnumerator ( ) : |
||
return |
public IndexOf ( |
||
value | /// The RssItem value to locate in the RssItemCollection. /// | |
return | int |
public Insert ( int index, |
||
index | int | /// The index at which the RssItem is to be inserted. /// |
value | /// The RssItem to insert. /// | |
return | void |
public Remove ( |
||
value | /// The RssItem value to remove from this RssItemCollection. /// | |
return | void |
public RssItemCollection ( |
||
items | /// The array whose elements are to be added to the new RssItemCollection. /// | |
return | System |
public RssItemCollection ( |
||
items | /// The RssItemCollection whose elements are to be added to the new RssItemCollection. /// | |
return | System |