ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









FormsAuthenticationEventArgs

System.Web.Security (system.web.dll)sealed class

This class is a custom System.EventArgs that is
used in the event handler for the
FormsAuthenticationModule.Authenticate event. It
provides two properties: Context, which provides a
reference to the current System.Web.HttpContext,
and User, which will be a null reference because
information is not yet retrieved from the Forms authentication
cookie. This event is not typically used because Forms authentication
already uses the custom code you have created for the login page.

public sealed class 

FormsAuthenticationEventArgs : EventArgs {
// Public Constructors
public

FormsAuthenticationEventArgs (System.Web.HttpContext

context );
// Public Instance Properties
public HttpContext

Context {get; }
public IPrincipal

User {set; get; }
}



Hierarchy


System.Object
System.EventArgs
FormsAuthenticationEventArgs

Passed To


FormsAuthenticationEventHandler.{BeginInvoke( ),
Invoke( )}


/ 873