cookie クラス : IsSecure(bool) セッタ

説明

Secure属性を設定します。

構文

instance.IsSecure = value;

代入値

クラス説明
boolSecure属性。

返り値

無し。

サンプルコード

1:

browser br;

2:

cookie coo = br.GetCookie("Example");

3:

coo.IsSecure = true;

4:

coo.Set();

注意

Set()メソッドを呼び出して変更を確定する必要があります。

参照リンク

無し。

Copyright © Cooker All rights reserved.