XmlReaderSettings.IgnoreWhitespace 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
유효하지 않은 공백을 무시할지를 나타내는 값을 가져오거나 설정합니다.
public:
property bool IgnoreWhitespace { bool get(); void set(bool value); };
public bool IgnoreWhitespace { get; set; }
member this.IgnoreWhitespace : bool with get, set
Public Property IgnoreWhitespace As Boolean
속성 값
공백을 무시하면 true
이고, 그렇지 않으면 false
입니다. 기본값은 false
입니다.
예제
다음은 처리 명령, 주석 및 중요하지 않은 공백을 제거하는 판독기를 생성하는 데 사용할 수 있는 설정 개체를 만듭니다.
// Set the reader settings.
XmlReaderSettings^ settings = gcnew XmlReaderSettings;
settings->IgnoreComments = true;
settings->IgnoreProcessingInstructions = true;
settings->IgnoreWhitespace = true;
// Set the reader settings.
XmlReaderSettings settings = new XmlReaderSettings();
settings.IgnoreComments = true;
settings.IgnoreProcessingInstructions = true;
settings.IgnoreWhitespace = true;
' Set the reader settings.
Dim settings as XmlReaderSettings = new XmlReaderSettings()
settings.IgnoreComments = true
settings.IgnoreProcessingInstructions = true
settings.IgnoreWhitespace = true
설명
중요한 것으로 간주되지 않는 공백에는 가독성을 높이기 위해 태그를 구분하는 데 사용되는 공백, 탭 및 빈 줄이 포함됩니다. 예를 들어 요소 콘텐츠의 공백이 있습니다.
이 속성 설정은 혼합 콘텐츠 모드의 태그 간 공백 또는 특성 범위 xml:space='preserve'
내에서 발생하는 공백에 영향을 주지 않습니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET