CodeCatchClauseCollection Osztály
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
Objektumok gyűjteményét CodeCatchClause jelöli.
public ref class CodeCatchClauseCollection : System::Collections::CollectionBase
public class CodeCatchClauseCollection : System.Collections.CollectionBase
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeCatchClauseCollection : System.Collections.CollectionBase
type CodeCatchClauseCollection = class
inherit CollectionBase
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeCatchClauseCollection = class
inherit CollectionBase
Public Class CodeCatchClauseCollection
Inherits CollectionBase
- Öröklődés
- Attribútumok
Példák
Az alábbi példa az osztálymódszerek használatát CodeCatchClauseCollection mutatja be. A példa létrehoz egy új osztálypéldányt, és a metódusokkal utasításokat ad hozzá a gyűjteményhez, visszaadja az indexet, és attribútumokat ad hozzá vagy távolít el egy adott indexponton.
// Creates an empty CodeCatchClauseCollection.
CodeCatchClauseCollection collection = new CodeCatchClauseCollection();
// Adds a CodeCatchClause to the collection.
collection.Add( new CodeCatchClause("e") );
// Adds an array of CodeCatchClause objects to the collection.
CodeCatchClause[] clauses = { new CodeCatchClause(), new CodeCatchClause() };
collection.AddRange( clauses );
// Adds a collection of CodeCatchClause objects to the collection.
CodeCatchClauseCollection clausesCollection = new CodeCatchClauseCollection();
clausesCollection.Add( new CodeCatchClause("e", new CodeTypeReference(typeof(System.ArgumentOutOfRangeException))) );
clausesCollection.Add( new CodeCatchClause("e") );
collection.AddRange( clausesCollection );
// Tests for the presence of a CodeCatchClause in the
// collection, and retrieves its index if it is found.
CodeCatchClause testClause = new CodeCatchClause("e");
int itemIndex = -1;
if( collection.Contains( testClause ) )
itemIndex = collection.IndexOf( testClause );
// Copies the contents of the collection beginning at index 0 to the specified CodeCatchClause array.
// 'clauses' is a CodeCatchClause array.
collection.CopyTo( clauses, 0 );
// Retrieves the count of the items in the collection.
int collectionCount = collection.Count;
// Inserts a CodeCatchClause at index 0 of the collection.
collection.Insert( 0, new CodeCatchClause("e") );
// Removes the specified CodeCatchClause from the collection.
CodeCatchClause clause = new CodeCatchClause("e");
collection.Remove( clause );
// Removes the CodeCatchClause at index 0.
collection.RemoveAt(0);
' Creates an empty CodeCatchClauseCollection.
Dim collection As New CodeCatchClauseCollection()
' Adds a CodeCatchClause to the collection.
collection.Add(New CodeCatchClause("e"))
' Adds an array of CodeCatchClause objects to the collection.
Dim clauses As CodeCatchClause() = {New CodeCatchClause(), New CodeCatchClause()}
collection.AddRange(clauses)
' Adds a collection of CodeCatchClause objects to the collection.
Dim clausesCollection As New CodeCatchClauseCollection()
clausesCollection.Add(New CodeCatchClause("e", New CodeTypeReference(GetType(System.ArgumentOutOfRangeException))))
clausesCollection.Add(New CodeCatchClause("e"))
collection.AddRange(clausesCollection)
' Tests for the presence of a CodeCatchClause in the
' collection, and retrieves its index if it is found.
Dim testClause As New CodeCatchClause("e")
Dim itemIndex As Integer = -1
If collection.Contains(testClause) Then
itemIndex = collection.IndexOf(testClause)
End If
' Copies the contents of the collection beginning at index 0 to the specified CodeCatchClause array.
' 'clauses' is a CodeCatchClause array.
collection.CopyTo(clauses, 0)
' Retrieves the count of the items in the collection.
Dim collectionCount As Integer = collection.Count
' Inserts a CodeCatchClause at index 0 of the collection.
collection.Insert(0, New CodeCatchClause("e"))
' Removes the specified CodeCatchClause from the collection.
Dim clause As New CodeCatchClause("e")
collection.Remove(clause)
' Removes the CodeCatchClause at index 0.
collection.RemoveAt(0)
Megjegyzések
Az CodeCatchClauseCollection osztály egy egyszerű gyűjteményobjektumot biztosít, amely objektumok készletének CodeCatchClause tárolására használható.
Konstruktorok
| Name | Description |
|---|---|
| CodeCatchClauseCollection() |
Inicializálja a CodeCatchClauseCollection osztály új példányát. |
| CodeCatchClauseCollection(CodeCatchClause[]) |
Inicializálja a CodeCatchClauseCollection megadott objektumtömböt CodeCatchClause tartalmazó osztály új példányát. |
| CodeCatchClauseCollection(CodeCatchClauseCollection) |
Inicializálja a CodeCatchClauseCollection megadott forrásgyűjtemény elemeit tartalmazó osztály új példányát. |
Tulajdonságok
| Name | Description |
|---|---|
| Capacity |
Lekéri vagy beállítja a tartalmazható elemek CollectionBase számát. (Öröklődés forrása CollectionBase) |
| Count |
Lekéri a példányban CollectionBase található elemek számát. Ez a tulajdonság nem bírálható felül. (Öröklődés forrása CollectionBase) |
| InnerList |
ArrayList Lekéri a példány elemeinek CollectionBase listáját. (Öröklődés forrása CollectionBase) |
| Item[Int32] |
Lekéri vagy beállítja az CodeCatchClause objektumot a gyűjtemény megadott indexén. |
| List |
IList Lekéri a példány elemeinek CollectionBase listáját. (Öröklődés forrása CollectionBase) |
Metódusok
| Name | Description |
|---|---|
| Add(CodeCatchClause) |
Hozzáadja a megadott CodeCatchClause objektumot a gyűjteményhez. |
| AddRange(CodeCatchClause[]) |
Másolja a megadott CodeCatchClause tömb elemeit a gyűjtemény végére. |
| AddRange(CodeCatchClauseCollection) |
Másolja egy másik CodeCatchClauseCollection objektum tartalmát a gyűjtemény végére. |
| Clear() |
Eltávolítja az összes objektumot a CollectionBase példányból. Ez a metódus nem bírálható felül. (Öröklődés forrása CollectionBase) |
| Contains(CodeCatchClause) |
Olyan értéket kap, amely jelzi, hogy a gyűjtemény tartalmazza-e a megadott CodeCatchClause objektumot. |
| CopyTo(CodeCatchClause[], Int32) |
A gyűjteményobjektumokat a megadott indextől kezdődő egydimenziós Array példányba másolja. |
| Equals(Object) |
Meghatározza, hogy a megadott objektum egyenlő-e az aktuális objektummal. (Öröklődés forrása Object) |
| GetEnumerator() |
Egy enumerátort ad vissza, amely a példányon keresztül CollectionBase iterál. (Öröklődés forrása CollectionBase) |
| GetHashCode() |
Ez az alapértelmezett kivonatoló függvény. (Öröklődés forrása Object) |
| GetType() |
Lekéri az Type aktuális példányt. (Öröklődés forrása Object) |
| IndexOf(CodeCatchClause) |
Lekéri a gyűjteményben megadott CodeCatchClause objektum indexét, ha az a gyűjteményben található. |
| Insert(Int32, CodeCatchClause) |
Beszúrja a megadott CodeCatchClause objektumot a megadott index gyűjteményébe. |
| MemberwiseClone() |
Az aktuális Objectpéldány sekély másolatát hozza létre. (Öröklődés forrása Object) |
| OnClear() |
További egyéni folyamatokat hajt végre a példány tartalmának CollectionBase törlésekor. (Öröklődés forrása CollectionBase) |
| OnClearComplete() |
További egyéni folyamatokat hajt végre a példány tartalmának CollectionBase törlése után. (Öröklődés forrása CollectionBase) |
| OnInsert(Int32, Object) |
További egyéni folyamatokat hajt végre, mielőtt új elemet szúr be a CollectionBase példányba. (Öröklődés forrása CollectionBase) |
| OnInsertComplete(Int32, Object) |
További egyéni folyamatokat hajt végre, miután beszúrt egy új elemet a CollectionBase példányba. (Öröklődés forrása CollectionBase) |
| OnRemove(Int32, Object) |
További egyéni folyamatokat hajt végre, amikor eltávolít egy elemet a CollectionBase példányból. (Öröklődés forrása CollectionBase) |
| OnRemoveComplete(Int32, Object) |
További egyéni folyamatokat hajt végre, miután eltávolított egy elemet a CollectionBase példányból. (Öröklődés forrása CollectionBase) |
| OnSet(Int32, Object, Object) |
További egyéni folyamatokat hajt végre, mielőtt beállít egy értéket a CollectionBase példányban. (Öröklődés forrása CollectionBase) |
| OnSetComplete(Int32, Object, Object) |
További egyéni folyamatokat hajt végre, miután beállított egy értéket a CollectionBase példányban. (Öröklődés forrása CollectionBase) |
| OnValidate(Object) |
További egyéni folyamatokat hajt végre egy érték ellenőrzésekor. (Öröklődés forrása CollectionBase) |
| Remove(CodeCatchClause) |
Eltávolítja a megadott CodeCatchClause objektumot a gyűjteményből. |
| RemoveAt(Int32) |
Eltávolítja az elemet a példány megadott indexéből CollectionBase . Ez a módszer nem bírálható felül. (Öröklődés forrása CollectionBase) |
| ToString() |
Az aktuális objektumot jelképező sztringet ad vissza. (Öröklődés forrása Object) |
Explicit interfész-implementációk
| Name | Description |
|---|---|
| ICollection.CopyTo(Array, Int32) |
A teljes CollectionBase példányt egy kompatibilis egydimenziósra Arraymásolja a céltömb megadott indexétől kezdve. (Öröklődés forrása CollectionBase) |
| ICollection.IsSynchronized |
Beolvas egy értéket, amely jelzi, hogy a CollectionBase hozzáférés szinkronizálva van-e (a szál biztonságos). (Öröklődés forrása CollectionBase) |
| ICollection.SyncRoot |
Lekéri az objektumot, amely a hozzáférés szinkronizálására használható.CollectionBase (Öröklődés forrása CollectionBase) |
| IList.Add(Object) |
Objektumot ad hozzá a CollectionBasevégéhez. (Öröklődés forrása CollectionBase) |
| IList.Contains(Object) |
Meghatározza, hogy az CollectionBase adott elem tartalmaz-e. (Öröklődés forrása CollectionBase) |
| IList.IndexOf(Object) |
Megkeresi a megadott Object értéket, és a teljes első CollectionBaseelőfordulás nulla alapú indexét adja vissza. (Öröklődés forrása CollectionBase) |
| IList.Insert(Int32, Object) |
Elemet szúr be a CollectionBase megadott indexbe. (Öröklődés forrása CollectionBase) |
| IList.IsFixedSize |
Egy értéket kap, amely jelzi, hogy a CollectionBase méret rögzített-e. (Öröklődés forrása CollectionBase) |
| IList.IsReadOnly |
Beolvas egy értéket, amely jelzi, hogy az CollectionBase írásvédett-e. (Öröklődés forrása CollectionBase) |
| IList.Item[Int32] |
Lekéri vagy beállítja az elemet a megadott indexen. (Öröklődés forrása CollectionBase) |
| IList.Remove(Object) |
Eltávolítja egy adott objektum első előfordulását a CollectionBase. (Öröklődés forrása CollectionBase) |
Bővítő metódusok
| Name | Description |
|---|---|
| AsParallel(IEnumerable) |
Lehetővé teszi a lekérdezés párhuzamosítását. |
| AsQueryable(IEnumerable) |
Átalakítja az egyiket IEnumerableIQueryable. |
| Cast<TResult>(IEnumerable) |
Egy elem elemeit IEnumerable a megadott típusra veti. |
| OfType<TResult>(IEnumerable) |
Egy adott típus alapján szűri IEnumerable egy adott elem elemeit. |