Partilhar via


ValidatorCollection.Count Propriedade

Definição

Obtém o número de referências na coleção.

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

Valor da propriedade

Int32

O número de controles de validação na página.ValidatorCollection

Implementações

Exemplos

O exemplo de código a seguir demonstra o uso da Count propriedade.

// 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

Aplica-se a

Confira também