ValidatorCollection.Item[Int32] Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Doğrulama sunucusu denetimini koleksiyonda ValidatorCollection belirtilen dizin konumunda alır.
public:
property System::Web::UI::IValidator ^ default[int] { System::Web::UI::IValidator ^ get(int index); };
public System.Web.UI.IValidator this[int index] { get; }
member this.Item(int) : System.Web.UI.IValidator
Default Public ReadOnly Property Item(index As Integer) As IValidator
Parametreler
- index
- Int32
Döndürülecek doğrulayıcının dizini.
Özellik Değeri
Belirtilen doğrulayıcının değeri.
Örnekler
Aşağıdaki kod örneği özelliğinin Item[] kullanılmasını gösterir.
// Get 'Validators' of the page to myCollection.
ValidatorCollection myCollection = Page.Validators;
// Print the values of Collection using 'Item' property.
string myStr = " ";
for(int i = 0; i<myCollection.Count; i++)
{
myStr += myCollection[i].ToString();
myStr += " ";
}
msgLabel.Text = myStr;
' Get 'Validators' of the page to myCollection.
Dim myCollection As ValidatorCollection = Page.Validators
' Print the values of Collection using 'Item' property.
Dim myStr As String = " "
Dim i As Integer
For i = 0 To myCollection.Count - 1
myStr = mystr & CType(myCollection(i),BaseValidator).ToString() & "<br />"
Next i
msgLabel.Text = myStr