Méthode | Description | |
---|---|---|
Add ( |
Adds a Message to the end of the MessagesCollection. Please refer to ArrayList.Add for details. |
|
AddRange ( |
Adds the elements of a Message array to the end of the MessagesCollection. Please refer to ArrayList.AddRange for details. |
|
AddRange ( |
Adds the elements of another collection to the end of the MessagesCollection. Please refer to ArrayList.AddRange for details. |
|
BinarySearch ( |
Searches the entire sorted MessagesCollection for an Message element using the default comparer and returns the zero-based index of the element. Please refer to ArrayList.BinarySearch for details. |
|
Clear ( ) : void |
Removes all elements from the MessagesCollection. Please refer to ArrayList.Clear for details. |
|
Clone ( ) : object |
Creates a shallow copy of the MessagesCollection. Please refer to ArrayList.Clone for details. |
|
Contains ( Message value ) : bool |
Determines whether the MessagesCollection contains the specified Message element. Please refer to ArrayList.Contains for details. |
|
CopyTo ( Message array ) : void |
Copies the entire MessagesCollection to a one-dimensional Array of Message elements, starting at the beginning of the target array. Please refer to ArrayList.CopyTo for details. |
|
CopyTo ( Message array, int arrayIndex ) : void |
Copies the entire MessagesCollection to a one-dimensional Array of Message elements, starting at the specified index of the target array. Please refer to ArrayList.CopyTo for details. |
|
GetEnumerator ( ) : IMessageEnumerator |
Returns an IMessageEnumerator that can iterate through the MessagesCollection. Please refer to ArrayList.GetEnumerator for details. |
|
IndexOf ( Message value ) : int |
Returns the zero-based index of the first occurrence of the specified Message in the MessagesCollection. Please refer to ArrayList.IndexOf for details. |
|
Insert ( int index, Message value ) : void |
Inserts a Message element into the MessagesCollection at the specified index. Please refer to ArrayList.Insert for details. |
|
MessagesCollection ( ) : System |
Initializes a new instance of the MessagesCollection class that is empty and has the default initial capacity. Please refer to ArrayList() for details. |
|
MessagesCollection ( Message array ) : System |
Initializes a new instance of the MessagesCollection class that contains elements copied from the specified Message array and that has the same initial capacity as the number of elements copied. Please refer to ArrayList(ICollection) for details. |
|
MessagesCollection ( MessagesCollection collection ) : System |
Initializes a new instance of the MessagesCollection class that contains elements copied from the specified collection and that has the same initial capacity as the number of elements copied. Please refer to ArrayList(ICollection) for details. |
|
MessagesCollection ( int capacity ) : System |
Initializes a new instance of the MessagesCollection class that is empty and has the specified initial capacity. Please refer to ArrayList(Int32) for details. |
|
ReadOnly ( MessagesCollection collection ) : MessagesCollection |
Returns a read-only wrapper for the specified MessagesCollection. Please refer to ArrayList.ReadOnly for details. |
|
Remove ( Message value ) : void |
Removes the first occurrence of the specified Message from the MessagesCollection. Please refer to ArrayList.Remove for details. |
|
RemoveAt ( int index ) : void |
Removes the element at the specified index of the MessagesCollection. Please refer to ArrayList.RemoveAt for details. |
|
RemoveRange ( int index, int count ) : void |
Removes the specified range of elements from the MessagesCollection. Please refer to ArrayList.RemoveRange for details. |
|
Reverse ( ) : void |
Reverses the order of the elements in the entire MessagesCollection. Please refer to ArrayList.Reverse for details. |
|
Reverse ( int index, int count ) : void |
Reverses the order of the elements in the specified range. Please refer to ArrayList.Reverse for details. |
|
Sort ( ) : void |
Sorts the elements in the entire MessagesCollection using the IComparable implementation of each element. Please refer to ArrayList.Sort for details. |
|
Sort ( IComparer comparer ) : void |
Sorts the elements in the entire MessagesCollection using the specified IComparer interface. Please refer to ArrayList.Sort for details. |
|
Sort ( int index, int count, IComparer comparer ) : void |
Sorts the elements in the specified range using the specified IComparer interface. Please refer to ArrayList.Sort for details. |
|
Synchronized ( MessagesCollection collection ) : MessagesCollection |
Returns a synchronized (thread-safe) wrapper for the specified MessagesCollection. Please refer to ArrayList.Synchronized for details. |
|
ToArray ( ) : Message[] |
Copies the elements of the MessagesCollection to a new Array of Message elements. Please refer to ArrayList.ToArray for details. |
|
TrimToSize ( ) : void |
Sets the capacity to the actual number of elements in the MessagesCollection. Please refer to ArrayList.TrimToSize for details. |
|
Unique ( MessagesCollection collection ) : MessagesCollection |
Returns a wrapper for the specified MessagesCollection ensuring that all elements are unique. The Unique wrapper provides a set-like collection by ensuring that all elements in the MessagesCollection are unique. Unique raises an ArgumentException if the specified collection contains any duplicate elements. The returned wrapper raises a NotSupportedException whenever the user attempts to add an element that is already contained in the Messages. Note: The Unique wrapper reflects any changes made to the underlying collection, including the possible creation of duplicate elements. The uniqueness of all elements is therefore no longer assured if the underlying collection is manipulated directly. |
|
this ( int index ) : Message |
Gets or sets the Message element at the specified index. Please refer to ArrayList.this for details. |
Méthode | Description | |
---|---|---|
CheckEnumIndex ( int index ) : void | ||
CheckEnumVersion ( int version ) : void | ||
CheckTargetArray ( Array array, int arrayIndex ) : void | ||
EnsureCapacity ( int minimum ) : void | ||
ICollection ( Array array, int arrayIndex ) : void |
Copies the entire MessagesCollection to a one-dimensional Array, starting at the specified index of the target array. Please refer to ArrayList.CopyTo for details. |
|
IEnumerable ( ) : IEnumerator |
Returns an IEnumerator that can iterate through the MessagesCollection. Please refer to ArrayList.GetEnumerator for details. |
|
IList ( object value ) : bool |
Determines whether the MessagesCollection contains the specified element. Please refer to ArrayList.Contains for details. |
|
IList ( object value ) : int |
Adds an Object to the end of the MessagesCollection. Please refer to ArrayList.Add for details. |
|
IList ( int index, object value ) : void |
Inserts an element into the MessagesCollection at the specified index. Please refer to ArrayList.Insert for details. |
|
IList ( object value ) : void |
Removes the first occurrence of the specified Object from the MessagesCollection. Please refer to ArrayList.Remove for details. |
|
MessagesCollection ( Tag tag ) : System | ||
ValidateIndex ( int index ) : void | ||
this ( int index ) : objectIList.System |
Gets or sets the element at the specified index. Please refer to ArrayList.this for details. |
public Add ( |
||
value | The |
|
Résultat | int |
public AddRange ( |
||
array | An |
|
Résultat | void |
public AddRange ( |
||
collection | The |
|
Résultat | void |
public BinarySearch ( |
||
value | The |
|
Résultat | int |
public Contains ( Message value ) : bool | ||
value | Message | The |
Résultat | bool |
public CopyTo ( Message array ) : void | ||
array | Message | The one-dimensional |
Résultat | void |
public CopyTo ( Message array, int arrayIndex ) : void | ||
array | Message | The one-dimensional |
arrayIndex | int | The zero-based index in |
Résultat | void |
public GetEnumerator ( ) : IMessageEnumerator | ||
Résultat | IMessageEnumerator |
public IndexOf ( Message value ) : int | ||
value | Message | The |
Résultat | int |
public Insert ( int index, Message value ) : void | ||
index | int | The zero-based index at which |
value | Message | The |
Résultat | void |
public MessagesCollection ( Message array ) : System | ||
array | Message | An |
Résultat | System |
public MessagesCollection ( MessagesCollection collection ) : System | ||
collection | MessagesCollection | The |
Résultat | System |
public MessagesCollection ( int capacity ) : System | ||
capacity | int | The number of elements that the new
/// |
Résultat | System |
public static ReadOnly ( MessagesCollection collection ) : MessagesCollection | ||
collection | MessagesCollection | The |
Résultat | MessagesCollection |
public Remove ( Message value ) : void | ||
value | Message | The |
Résultat | void |
public RemoveAt ( int index ) : void | ||
index | int | The zero-based index of the element to remove. |
Résultat | void |
public RemoveRange ( int index, int count ) : void | ||
index | int | The zero-based starting index of the range /// of elements to remove. |
count | int | The number of elements to remove. |
Résultat | void |
public Reverse ( int index, int count ) : void | ||
index | int | The zero-based starting index of the range /// of elements to reverse. |
count | int | The number of elements to reverse. |
Résultat | void |
public Sort ( IComparer comparer ) : void | ||
comparer | IComparer |
/// |
Résultat | void |
public Sort ( int index, int count, IComparer comparer ) : void | ||
index | int | The zero-based starting index of the range /// of elements to sort. |
count | int | The number of elements to sort. |
comparer | IComparer |
/// |
Résultat | void |
public static Synchronized ( MessagesCollection collection ) : MessagesCollection | ||
collection | MessagesCollection | The |
Résultat | MessagesCollection |
public static Unique ( MessagesCollection collection ) : MessagesCollection | ||
collection | MessagesCollection | The |
Résultat | MessagesCollection |
public this ( int index ) : Message | ||
index | int | The zero-based index of the
/// |
Résultat | Message |