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 にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET