Sdílet prostřednictvím


XmlReaderSettings Konstruktory

Definice

Inicializuje novou instanci XmlReaderSettings třídy.

Přetížení

XmlReaderSettings()

Inicializuje novou instanci XmlReaderSettings třídy.

XmlReaderSettings(XmlResolver)
Zastaralé.

Inicializuje novou instanci XmlReaderSettings třídy.

XmlReaderSettings()

Zdroj:
XmlReaderSettings.cs
Zdroj:
XmlReaderSettings.cs
Zdroj:
XmlReaderSettings.cs

Inicializuje novou instanci XmlReaderSettings třídy.

public:
 XmlReaderSettings();
public XmlReaderSettings ();
Public Sub New ()

Příklady

Následující příkaz vytvoří objekt nastavení, který lze použít k vytvoření čtečky, která odstraní pokyny ke zpracování, komentáře a nevýznamné prázdné znaky.

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

Poznámky

Následující tabulka uvádí počáteční hodnoty vlastností pro instanci XmlReaderSettings.

Vlastnost Počáteční hodnota
Async false.
CheckCharacters true.
CloseInput false.
ConformanceLevel Document.
DtdProcessing Prohibit
IgnoreComments false.
IgnoreProcessingInstructions false.
IgnoreWhitespace false.
LineNumberOffset 0.
LinePositionOffset 0.
MaxCharactersFromEntities 0 (počet znaků, které jsou výsledkem rozbalení entit, není nijak omezen).
MaxCharactersInDocument 0 (velikost dokumentu XML není omezena).
NameTable null.
ProhibitDtd true. Tato vlastnost je zastaralá. Místo toho použijte DtdProcessing. Pokud jste nastavili výchozí hodnotu ProhibitDtdtrue nastavili DtdProcessing na Prohibit. Pokud jste nastavili ProhibitDtd na false nastavit DtdProcessing na Parse.
Schemas Prázdný objekt XmlSchemaSet.
ValidationFlags ProcessIdentityConstraints.
ValidationType None.
XmlResolver Nový objekt XmlUrlResolver.

Viz také

Platí pro

XmlReaderSettings(XmlResolver)

Upozornění

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Inicializuje novou instanci XmlReaderSettings třídy.

public:
 XmlReaderSettings(System::Xml::XmlResolver ^ resolver);
[System.Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
public XmlReaderSettings (System.Xml.XmlResolver resolver);
[<System.Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)>]
new System.Xml.XmlReaderSettings : System.Xml.XmlResolver -> System.Xml.XmlReaderSettings
Public Sub New (resolver As XmlResolver)

Parametry

resolver
XmlResolver

Překladač XML.

Atributy

Viz také

Platí pro