CookieHandlerElement.CustomCookieHandler 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置自定义 Cookie 处理程序类型。 当配置自定义 cookie 处理程序时必须设置此属性。
public:
property System::IdentityModel::Configuration::CustomTypeElement ^ CustomCookieHandler { System::IdentityModel::Configuration::CustomTypeElement ^ get(); void set(System::IdentityModel::Configuration::CustomTypeElement ^ value); };
[System.Configuration.ConfigurationProperty("customCookieHandler", IsRequired=false)]
public System.IdentityModel.Configuration.CustomTypeElement CustomCookieHandler { get; set; }
[<System.Configuration.ConfigurationProperty("customCookieHandler", IsRequired=false)>]
member this.CustomCookieHandler : System.IdentityModel.Configuration.CustomTypeElement with get, set
Public Property CustomCookieHandler As CustomTypeElement
属性值
定义自定义 cookie 处理程序类型的 CustomTypeElement。
- 属性
注解
此属性等效于 元素的<customCookieHandler>
<cookieHandler>
子元素。 它指定要使用的自定义 Cookie 处理程序类型。 如果设置了此属性,则必须将 Mode 属性设置为 Custom。 此属性指定的自定义类型必须派生自 CookieHandler 类。
ChunkedCookieHandler可以设置 属性或 CustomCookieHandler 属性,但不能同时设置两者。