Aracılığıyla paylaş


XmlReaderSettings.IgnoreProcessingInstructions Özellik

Tanım

İşleme yönergelerinin yoksayılıp yoksayılmayacağını belirten bir değer alır veya ayarlar.

public:
 property bool IgnoreProcessingInstructions { bool get(); void set(bool value); };
public bool IgnoreProcessingInstructions { get; set; }
member this.IgnoreProcessingInstructions : bool with get, set
Public Property IgnoreProcessingInstructions As Boolean

Özellik Değeri

true işleme yönergelerini 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.