UrlList
UrlList class
List of urls for contact
public class UrlList : IList<Url>
Constructors
Name |
Description |
UrlList() |
The default constructor. |
Properties
Name |
Description |
Blog { get; set; } |
Default blog page |
BusinessHomePage { get; set; } |
Default work page |
Count { get; } |
Gets the number of elements contained in the ICollection. |
Ftp { get; set; } |
Default ftp page |
HomePage { get; set; } |
Default home page |
IsReadOnly { get; } |
|
Item { get; set; } |
Gets or sets the element at the specified index. |
Profile { get; set; } |
Default profile page |
Methods
Name |
Description |
Add(Url) |
Adds an item to the list. |
Clear() |
Removes all items from the list. |
Contains(Url) |
Determines whether the list contains a specific value. |
CopyTo(Url[], int) |
Copies the elements to an array, starting at a particular array index. |
GetEnumerator() |
|
IndexOf(Url) |
Determines the index of a specific item in the list. |
Insert(int, Url) |
Inserts an item to the list at the specified index. |
Remove(Url) |
Removes the first occurrence of a specific object from the list. |
RemoveAt(int) |
Removes the list item at the specified index. |
See Also