XmlReaderSettings.IgnoreProcessingInstructions Proprietà

Definizione

Ottiene o imposta un valore che indica se ignorare le istruzioni di elaborazione.

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

Valore della proprietà

true per ignorare le istruzioni di elaborazione; in caso contrario, false. Il valore predefinito è false.

Esempio

Di seguito viene creato un oggetto impostazioni che può essere utilizzato per costruire un lettore che rimuove istruzioni di elaborazione, commenti e spazi vuoti non significativi.

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

Commenti

L'impostazione di questa proprietà su true può comportare la restituzione di più nodi di testo contigui dal lettore. Questa operazione non influisce sulla convalida.

Si applica a

Vedi anche