XmlReaderSettings.IgnoreComments プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コメントを無視するかどうかを示す値を取得または設定します。
public:
property bool IgnoreComments { bool get(); void set(bool value); };
public bool IgnoreComments { get; set; }
member this.IgnoreComments : bool with get, set
Public Property IgnoreComments 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
注釈
このプロパティを設定すると true
、リーダーから複数の連続したテキスト ノードが返される可能性があります。 これは検証には影響しません。