ScriptManager.AuthenticationService 属性

定义

获取与当前 ScriptManager 实例关联的 AuthenticationServiceManager 对象。

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

属性值

当前 ScriptManager 实例的 AuthenticationServiceManager 对象。

属性

注解

AuthenticationServiceManager此属性返回的 对象表示向页面注册的身份验证服务。 可以在 控件或关联的 ScriptManagerProxy 控件中ScriptManager定义身份验证服务。

可以使用 ASP.NET 身份验证服务或使用自定义身份验证服务。 通过在页面上的 元素中包含 asp:ScriptManager 元素AuthenticationService,可以在标记中添加自定义服务,如以下示例所示。

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

还可以以编程方式配置 AuthenticationServiceManager 对象。 在页面的PreRender生命周期阶段向 ScriptManager 控件注册服务。

适用于