PrefixList Class
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Contains a list of prefixes.
Inheritance Hierarchy
System. . :: . .Object
System.Collections. . :: . .ArrayList
Microsoft.SPOT.Net..::..PrefixList
Namespace: Microsoft.SPOT.Net
Assembly: System.Ftp (in System.Ftp.dll)
Syntax
'Declaration
Public Class PrefixList _
Inherits ArrayList
public class PrefixList : ArrayList
public ref class PrefixList : public ArrayList
type PrefixList =
class
inherit ArrayList
end
public class PrefixList extends ArrayList
The PrefixList type exposes the following members.
Constructors
Name | Description | |
---|---|---|
PrefixList | Initializes a new instance of the PrefixList class. |
Top
Properties
Name | Description | |
---|---|---|
Capacity | Gets or sets the number of elements that the ArrayList can contain. (Inherited from ArrayList.) | |
Count | Gets the number of elements actually contained in the ArrayList. (Inherited from ArrayList.) | |
IsFixedSize | Gets a value indicating whether the ArrayList has a fixed size. (Inherited from ArrayList.) | |
IsReadOnly | Gets a value indicating whether the ArrayList is read-only. (Inherited from ArrayList.) | |
IsSynchronized | Gets a value indicating whether access to the ArrayList is synchronized (thread safe). (Inherited from ArrayList.) | |
Item | Gets or sets the element at the specified index. (Inherited from ArrayList.) | |
SyncRoot | Gets an object that can be used to synchronize access to the ArrayList. (Inherited from ArrayList.) |
Top
Methods
Name | Description | |
---|---|---|
Add | Adds a prefix to the list. (Overrides ArrayList. . :: . .Add(Object).) | |
BinarySearch | Searches the entire sorted ArrayList for an element using the specified comparer and returns the zero-based index of the element. (Inherited from ArrayList.) | |
Clear | Removes all elements from the ArrayList. (Inherited from ArrayList.) | |
Clone | Creates a shallow copy of the ArrayList. (Inherited from ArrayList.) | |
Contains | Determines whether an element is in the ArrayList. (Inherited from ArrayList.) | |
CopyTo(Array) | Copies the entire ArrayList to a compatible one-dimensional Array, starting at the beginning of the target array. (Inherited from ArrayList.) | |
CopyTo(Array, Int32) | Copies the entire ArrayList to a compatible one-dimensional Array, starting at the specified index of the target array. (Inherited from ArrayList.) | |
Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetEnumerator | Returns an enumerator for the entire ArrayList. (Inherited from ArrayList.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
IndexOf(Object) | Searches for the specified Object and returns the zero-based index of the first occurrence within the entire ArrayList. (Inherited from ArrayList.) | |
IndexOf(Object, Int32) | Searches for the specified Object and returns the zero-based index of the first occurrence within the range of elements in the ArrayList that extends from the specified index to the last element. (Inherited from ArrayList.) | |
IndexOf(Object, Int32, Int32) | Searches for the specified Object and returns the zero-based index of the first occurrence within the range of elements in the ArrayList that starts at the specified index and contains the specified number of elements. (Inherited from ArrayList.) | |
Insert | Inserts an element into the ArrayList at the specified index. (Inherited from ArrayList.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Remove | Removes the first occurrence of a specific object from the ArrayList. (Inherited from ArrayList.) | |
RemoveAt | Removes the element at the specified index of the ArrayList. (Inherited from ArrayList.) | |
ToArray() () () () | Copies the elements of the ArrayList to a new Object array. (Inherited from ArrayList.) | |
ToArray(Type) | Copies the elements of the ArrayList to a new array of the specified element type. (Inherited from ArrayList.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.