Udostępnij za pośrednictwem


ValidatorCollection.Count Właściwość

Definicja

Pobiera liczbę odwołań w kolekcji.

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

Wartość właściwości

Int32

Liczba kontrolek weryfikacji na stronie ValidatorCollection.

Implementuje

Przykłady

W poniższym przykładzie kodu pokazano użycie Count właściwości .

// Get 'Validators' of the page to myCollection.
ValidatorCollection myCollection = Page.Validators;
// Show the number of validators of the page.
int count = myCollection.Count;
' Get 'Validators' of the page to myCollection.
Dim myCollection As ValidatorCollection = Page.Validators
' Show the number of validators of the page.
Dim count As Integer = myCollection.Count

Dotyczy

Zobacz też