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