FormsAuthenticationConfiguration.Domain 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
폼 인증 쿠키와 함께 보낼 도메인 이름을 가져오거나 설정합니다.
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 속성에 액세스하는 방법을 보여 줍니다. 코드 예제에서는 참조는 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
대한 섹션의 특성보다 우선합니다.