HttpFileCollection.GetKey(Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne le nom du membre HttpFileCollection ayant l'index numérique spécifié.
public:
System::String ^ GetKey(int index);
public string GetKey (int index);
member this.GetKey : int -> string
Public Function GetKey (index As Integer) As String
Paramètres
- index
- Int32
Index du nom de l'objet à retourner.
Retours
Nom du HttpFileCollection membre spécifié par index
.
Exemples
L’exemple suivant effectue une boucle dans la collection de fichiers et effectue une action si un membre de la collection de fichiers portant le nom « CustInfo » est trouvé.
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