IFormCollection Interface
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.
Représente les valeurs de formulaire analysées envoyées avec httpRequest.
public interface class IFormCollection : System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, Microsoft::Extensions::Primitives::StringValues>>
public interface IFormCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,Microsoft.Extensions.Primitives.StringValues>>
type IFormCollection = interface
interface seq<KeyValuePair<string, StringValues>>
interface IEnumerable
Public Interface IFormCollection
Implements IEnumerable(Of KeyValuePair(Of String, StringValues))
- Dérivé
- Implémente
Propriétés
Count |
Obtient le nombre d’éléments contenus dans le IFormCollection. |
Files |
Collection de fichiers envoyée avec la demande. |
Item[String] |
Obtient la valeur avec la clé spécifiée. |
Keys |
Obtient un ICollection<T> contenant les clés de IFormCollection. |
Méthodes
ContainsKey(String) |
Détermine si IFormCollection contient un élément avec la clé spécifiée. |
TryGetValue(String, StringValues) |
Obtient la valeur associée à la clé spécifiée. |