ScriptManager.AuthenticationService Propriété
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.
Obtient l'objet AuthenticationServiceManager associé à l'instance ScriptManager actuelle.
public:
property System::Web::UI::AuthenticationServiceManager ^ AuthenticationService { System::Web::UI::AuthenticationServiceManager ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.AuthenticationServiceManager AuthenticationService { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.AuthenticationService : System.Web.UI.AuthenticationServiceManager
Public ReadOnly Property AuthenticationService As AuthenticationServiceManager
Valeur de propriété
Objet AuthenticationServiceManager pour l'instance ScriptManager actuelle.
- Attributs
Remarques
L’objet AuthenticationServiceManager retourné par cette propriété représente le service d’authentification inscrit auprès de la page. Le service d’authentification peut être défini dans le ScriptManager contrôle ou dans un contrôle associé ScriptManagerProxy .
Vous pouvez utiliser le service d’authentification ASP.NET ou utiliser un service d’authentification personnalisé. Vous pouvez ajouter le service personnalisé dans le balisage en incluant un élément à l’intérieur de AuthenticationService
l’élément asp:ScriptManager
sur la page, comme illustré dans l’exemple suivant.
<asp:ScriptManager ID="SM1" runat="server">
<AuthenticationService Path="MyAuthenticationService.asmx" />
</asp:ScriptManager>
Vous pouvez également configurer l’objet AuthenticationServiceManager par programmation. Les services sont inscrits auprès du ScriptManager contrôle pendant la phase de cycle de vie de la PreRender page.