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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









FormsProtectionEnumserializable

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

This enumeration specifies how ASP.NET protects the Forms
Authentication cookie. It is not used in ASP.NET code, but in the
web.config file by the
protection attribute of the
forms element (for example, <forms
name="name" loginUrl="url" protection="None ">
).
Encryption uses Triple-DES or DES to encode the
cookie before it is transmitted. Validation
verifies the cookie hasn't been altered in transit
by appending a validation key and then a Message Authentication Code
(MAC) to the cookie.

public enum 

FormsProtectionEnum {

All = 0 ,

None = 1 ,

Encryption = 2 ,

Validation = 3
}



Hierarchy


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


/ 873