SystemWebSectionGroup.XhtmlConformance 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
xhtmlConformance
섹션을 가져옵니다.
public:
property System::Web::Configuration::XhtmlConformanceSection ^ XhtmlConformance { System::Web::Configuration::XhtmlConformanceSection ^ get(); };
[System.Configuration.ConfigurationProperty("xhtmlConformance")]
public System.Web.Configuration.XhtmlConformanceSection XhtmlConformance { get; }
[<System.Configuration.ConfigurationProperty("xhtmlConformance")>]
member this.XhtmlConformance : System.Web.Configuration.XhtmlConformanceSection
Public ReadOnly Property XhtmlConformance As XhtmlConformanceSection
속성 값
XhtmlConformanceSection 개체는 구성 파일의 xhtmlConformance
섹션을 참조합니다.
- 특성
예제
다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 XhtmlConformanceSection 기존 웹 애플리케이션의 구성 파일에서 개체입니다.
// Get the xhtmlConformance section.
XhtmlConformanceSection xhtmlConformance =
systemWeb.XhtmlConformance;
// Read section information.
info =
xhtmlConformance.SectionInformation;
name = info.SectionName;
type = info.Type;
declared = info.IsDeclared.ToString();
msg = String.Format(
"Name: {0}\nDeclared: {1}\nType: {2}\n",
name, declared, type);
' Get the xhtmlConformance section.
Dim xhtmlConformance _
As XhtmlConformanceSection = _
systemWeb.XhtmlConformance
' Read section information.
info = xhtmlConformance.SectionInformation
name = info.SectionName
type = info.Type
declared = info.IsDeclared.ToString()
msg = String.Format("Name: {0}" + _
ControlChars.Lf + "Declared: {1}" + _
ControlChars.Lf + "Type: {2}" + _
ControlChars.Lf, name, declared, type)