LocalClientSecuritySettings.CookieRenewalThresholdPercentage 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置续订安全对话 Cookie 的阈值百分比。
public:
property int CookieRenewalThresholdPercentage { int get(); void set(int value); };
public int CookieRenewalThresholdPercentage { get; set; }
member this.CookieRenewalThresholdPercentage : int with get, set
Public Property CookieRenewalThresholdPercentage As Integer
属性值
续订安全对话 Cookie 的阈值百分比。 默认值为 60%。
例外
该属性使用 set
设置为一个小于 0 或大于 100 的值。
示例
此示例演示如何设置 CookieRenewalThresholdPercentage
成员:
// Set to 20 minutes.
settings.CookieRenewalThresholdPercentage = 20;
' Set to 20 minutes.
settings.CookieRenewalThresholdPercentage = 20
注解
客户端会缓存安全对话 Cookie,当缓存的 Cookie 即将到期时,客户端会从服务自动获取一个新的 Cookie。 此属性值确定在获取新 Cookie 之前,必须经过的已缓存 Cookie 有效期的百分比。 例如,如果该属性值为 60,且客户端具有一个有效期为 100 分钟的安全会话 Cookie,则它会重用该缓存的 Cookie 60 分钟,此后它会从服务获取一个新 Cookie。