XmlReaderSettings.IgnoreProcessingInstructions Propiedad

Definición

Obtiene o establece un valor que indica si se van a omitir las instrucciones de procesamiento.

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

Valor de propiedad

Es true para omitir las instrucciones de procesamiento; en caso contrario, es false. De manera predeterminada, es false.

Ejemplos

A continuación se crea un objeto de configuración que se puede usar para construir un lector que secciona las instrucciones de procesamiento, los comentarios y el espacio en blanco insignificante.

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

Comentarios

Establecer esta propiedad en puede dar lugar a true que se devuelvan varios nodos de texto contiguos del lector. Esto no afecta a la validación.

Se aplica a

Consulte también