ScriptManager.AuthenticationService Propriedade

Definição

Obtém o objeto AuthenticationServiceManager associado à instância ScriptManager atual.

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

Valor da propriedade

O objeto AuthenticationServiceManager da instância ScriptManager atual.

Atributos

Comentários

O AuthenticationServiceManager objeto retornado por essa propriedade representa o serviço de autenticação registrado na página. O serviço de autenticação pode ser definido no ScriptManager controle ou em um controle associado ScriptManagerProxy .

Você pode usar o serviço de autenticação ASP.NET ou usar um serviço de autenticação personalizado. Você pode adicionar o serviço personalizado na marcação incluindo um AuthenticationService elemento dentro do asp:ScriptManager elemento na página, conforme mostrado no exemplo a seguir.

<asp:ScriptManager ID="SM1" runat="server">  
  <AuthenticationService Path="MyAuthenticationService.asmx" />  
</asp:ScriptManager>  

Você também pode configurar o AuthenticationServiceManager objeto programaticamente. Os serviços são registrados com o ScriptManager controle durante a fase de ciclo de vida da PreRender página.

Aplica-se a