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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









AuthenticationModeserializable

System.Web.Configuration (system.web.dll)enum

This enumeration can be used to specify the type of ASP.NET
authentication. It is not used in ASP.NET code, but it is used
internally by the ASP.NET runtime. You can indicate the
AuthenticationMode for an application using the
web.config file by setting the
mode attribute in the
authentication tag (for example,
<authentication mode="Forms">). The
authentication mode you select determines which HttpModule from the
System.Web.Security namespace is used to validate
a user's credentials.

public enum 

AuthenticationMode {

None = 0 ,

Windows = 1 ,

Passport = 2 ,

Forms = 3
}



Hierarchy


System.Object
System.ValueType
System.Enum(System.IComparable,
System.IFormattable
,
System.IConvertible)
AuthenticationMode


/ 873