Aracılığıyla paylaş


HttpFileCollection.GetKey(Int32) Yöntem

Tanım

Belirtilen sayısal dizine HttpFileCollection sahip üyenin adını döndürür.

public:
 System::String ^ GetKey(int index);
public string GetKey (int index);
member this.GetKey : int -> string
Public Function GetKey (index As Integer) As String

Parametreler

index
Int32

Döndürülecek nesne adının dizini.

Döndürülenler

String

tarafından indexbelirtilen üyenin HttpFileCollection adı.

Örnekler

Aşağıdaki örnek, dosya koleksiyonunda döngü yapar ve "CustInfo" adlı bir dosya koleksiyonu üyesi bulunursa işlem yapar.

int loop1;
 HttpFileCollection MyFileColl = Request.Files;

 for( loop1 = 0; loop1 < MyFileColl.Count; loop1++)
 {
    if( MyFileColl.GetKey(loop1) == "CustInfo")
    {
       //...
    }
 }
Dim loop1 As Integer
 Dim MyFileColl As HttpFileCollection = Request.Files
 
 For loop1 = 0 To MyFileColl.Count - 1
    If MyFileColl.GetKey(loop1) = "CustInfo" Then
       '...
    End If
 Next loop1

Şunlara uygulanır