HttpCookiesSection.Domain プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
クッキー ドメイン名を取得または設定します。
この API は製品インフラストラクチャをサポートします。コードから直接使用するものではありません。
public:
property System::String ^ Domain { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("domain", DefaultValue="")]
public string Domain { get; set; }
[<System.Configuration.ConfigurationProperty("domain", DefaultValue="")>]
member this.Domain : string with get, set
Public Property Domain As String
プロパティ値
クッキー ドメイン名。
- 属性
例
次のコード例は、Domain プロパティの使用方法を示しています。
// Get the current Domain.
string domainValue =
httpCookiesSection.Domain;
// Set the Domain.
httpCookiesSection.Domain =
string.Empty;
' Get the current Domain.
Dim domainValue As String = _
httpCookiesSection.Domain
' Set the Domain property.
httpCookiesSection.Domain = _
String.Empty