Sdílet prostřednictvím


HttpFileCollection.GetKey(Int32) Metoda

Definice

Vrátí název člena HttpFileCollection se zadaným číselným indexem.

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

Parametry

index
Int32

Index názvu objektu, který se má vrátit.

Návraty

String

Název člena HttpFileCollection určeného uživatelem index.

Příklady

Následující příklad prochází kolekci souborů a provede akci, pokud je nalezen člen kolekce souborů s názvem "CustInfo".

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

Platí pro