Partager via


HttpHandlersSection.Handlers Propriété

Définition

Obtient la collection HttpHandlerActionCollection d'objets HttpHandlerAction contenus dans l'objet HttpHandlersSection.

public:
 property System::Web::Configuration::HttpHandlerActionCollection ^ Handlers { System::Web::Configuration::HttpHandlerActionCollection ^ get(); };
[System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)]
public System.Web.Configuration.HttpHandlerActionCollection Handlers { get; }
[<System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)>]
member this.Handlers : System.Web.Configuration.HttpHandlerActionCollection
Public ReadOnly Property Handlers As HttpHandlerActionCollection

Valeur de propriété

HttpHandlerActionCollection qui contient les objets HttpHandlerAction (ou gestionnaires).

Attributs

Exemples

L’exemple de code suivant montre comment accéder aux HttpHandlerAction gestionnaires.

// Get a HttpHandlerAction in the Handlers property HttpHandlerAction collection.
HttpHandlerAction httpHandler = httpHandlers[0];
' Get a HttpHandlerAction in the Handlers property HttpHandlerAction collection.
Dim httpHandler As HttpHandlerAction = httpHandlers(0)

Remarques

La Handlers collection de propriétés retournée par cette méthode ne fait référence à aucun élément réel dans le fichier de configuration sous-jacent. Il s’agit d’une construction qui permet d’accéder System.Web.Configuration facilement aux gestionnaires qu’elle contient. Il s’agit d’un modèle courant pour la gestion des éléments d’un fichier de configuration.

S’applique à

Voir aussi