다음을 통해 공유


FormsAuthenticationConfiguration.Domain 속성

정의

폼 인증 쿠키와 함께 보낼 도메인 이름을 가져오거나 설정합니다.

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

속성 값

String

보내는 폼 인증 쿠키의 도메인 이름입니다. 기본값은 빈 문자열입니다.

특성

예제

다음 코드 예제에서는 Domain 속성에 액세스하는 방법을 보여 줍니다. 코드 예제에서는 참조는 FormsAuthenticationConfiguration 클래스 항목의 섹션을 가져오는 방법을 알아봅니다.

// Get the current Domain.
string currentDomain = 
    formsAuthentication.Domain;

// Set the current Domain
formsAuthentication.Domain = "newDomain";
' Get the current Domain.
Dim currentDomain As String = formsAuthentication.Domain

' Set the current Domain
formsAuthentication.Domain = "newDomain"

설명

Domain 인증 쿠키에 사용 됩니다.

이 속성의 값은 해당 HttpCookie.Domain합니다.

이 설정은 양식 인증 쿠키에 domain forms 대한 섹션의 특성보다 우선합니다.

적용 대상