Aracılığıyla paylaş


ValidatorCollection.Count Özellik

Tanım

Koleksiyondaki başvuru sayısını alır.

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

Özellik Değeri

Int32

Sayfanın ValidatorCollectioniçindeki doğrulama denetimlerinin sayısı.

Uygulamalar

Örnekler

Aşağıdaki kod örneği özelliğinin Count kullanılmasını gösterir.

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

Şunlara uygulanır

Ayrıca bkz.