RoleManagerEventArgs.Context 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前请求的 HttpContext。
public:
property System::Web::HttpContext ^ Context { System::Web::HttpContext ^ get(); };
public System.Web.HttpContext Context { get; }
member this.Context : System.Web.HttpContext
Public ReadOnly Property Context As HttpContext
属性值
当前请求的 HttpContext。
示例
以下示例演示 ASP.NET GetRoles 应用程序的 Global.asax 文件中包含的 事件。 事件 GetRoles 为在 Web.config 文件中启用了跟踪的应用程序添加跟踪通知。
public void RoleManager_OnGetRoles(object sender, RoleManagerEventArgs args)
{
args.Context.Trace.Write("Roles", "Applying Role Information");
}
Public Sub RoleManager_OnGetRoles(sender As Object, args As RoleManagerEventArgs)
args.Context.Trace.Write("Roles", "Applying Role Information")
End Sub
注解
对象 RoleManagerEventArgs 向 GetRoles 类的事件 RoleManagerModule 提供事件信息。 属性 Context 提供对 HttpContext 当前请求的访问。