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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









DefaultAuthenticationModule

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

The ASP.NET framework uses this authentication module automatically
when no other authentication module is specified in the current
context (for example, when you set <authentication
mode="None">
in the web.config
file. This is similar to how many traditional ASP applications work.
IIS authentication is still used and access to local system resources
is provided in the context of a local system process account (or the
IUSR_MACHINENAME account) according to the IIS settings. However,
ASP.NET page requests will not require additional authentication.

public sealed class 

DefaultAuthenticationModule : System.Web.IHttpModule {
// Public Constructors
public

DefaultAuthenticationModule ( );
// Public Instance Methods
public void

Dispose ( ); // implements System.Web.IHttpModule
public void

Init (System.Web.HttpApplication

app ); // implements System.Web.IHttpModule
// Events
public event DefaultAuthenticationEventHandler

Authenticate ;
}




/ 873