Aracılığıyla paylaş


XmlReaderSettings.IgnoreComments Özellik

Tanım

Açıklamaların yoksayılıp yoksayılmayacağını belirten bir değer alır veya ayarlar.

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

Özellik Değeri

true açıklamaları yoksaymak için; aksi takdirde false. Varsayılan değer: false.

Örnekler

Aşağıda, işleme yönergelerini, açıklamalarını ve önemsiz boşluklarını şeritleyen bir okuyucu oluşturmak için kullanılabilecek bir ayarlar nesnesi oluşturulur.

// 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

Açıklamalar

Bu özelliği olarak true ayarlamak, okuyucudan birden çok bitişik metin düğümü döndürülmesini sağlayabilir. Bu doğrulamayı etkilemez.

Şunlara uygulanır

Ayrıca bkz.