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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









WindowsAuthenticationEventArgs

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

This class is a custom System.EventArgs that is
used in the event handler for the
WindowsAuthenticationModule.Authenticate event. It
provides three properties: Context, which provides
a reference to the current System.Web.HttpContext;
User, which will be a null reference and
Identity, which will contain the information
received from IIS. You can implement a custom authentication scheme
and set the User property programmatically to the
appropriate user identity. If you don't set it to a
non-null value, the WindowsAuthenticationModule
creates a
System.Security.Principal.WindowsPrincipal object
based on the information supplied by IIS and assign it to the
System.Web.HttpContext.User property.

The easiest way to set a default identity for impersonation is by
using the settings in the web.config file. You
should use this event only if you need to implement a custom
authentication scheme.

public sealed class 

WindowsAuthenticationEventArgs : EventArgs {
// Public Constructors
public

WindowsAuthenticationEventArgs (System.Security.Principal.WindowsIdentity

identity ,
System.Web.HttpContext

context );
// Public Instance Properties
public HttpContext

Context {get; }
public WindowsIdentity

Identity {get; }
public IPrincipal

User {set; get; }
}



Hierarchy


System.Object
System.EventArgs
WindowsAuthenticationEventArgs

Passed To


WindowsAuthenticationEventHandler.{BeginInvoke( ),
Invoke( )}


/ 873