XmlReaderSettings.IgnoreProcessingInstructions Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
İş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.