XProcessingInstruction Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der XProcessingInstruction-Klasse.
Überlädt
XProcessingInstruction(XProcessingInstruction) |
Initialisiert eine neue Instanz der XProcessingInstruction-Klasse. |
XProcessingInstruction(String, String) |
Initialisiert eine neue Instanz der XProcessingInstruction-Klasse. |
XProcessingInstruction(XProcessingInstruction)
- Quelle:
- XProcessingInstruction.cs
- Quelle:
- XProcessingInstruction.cs
- Quelle:
- XProcessingInstruction.cs
Initialisiert eine neue Instanz der XProcessingInstruction-Klasse.
public:
XProcessingInstruction(System::Xml::Linq::XProcessingInstruction ^ other);
public XProcessingInstruction (System.Xml.Linq.XProcessingInstruction other);
new System.Xml.Linq.XProcessingInstruction : System.Xml.Linq.XProcessingInstruction -> System.Xml.Linq.XProcessingInstruction
Public Sub New (other As XProcessingInstruction)
Parameter
- other
- XProcessingInstruction
Der XProcessingInstruction-Knoten, aus dem kopiert werden soll.
Hinweise
Dieser Konstruktor wird hauptsächlich intern verwendet, um eine tiefe Kopie einer XML-Struktur zu erstellen.
Weitere Informationen
Gilt für:
XProcessingInstruction(String, String)
- Quelle:
- XProcessingInstruction.cs
- Quelle:
- XProcessingInstruction.cs
- Quelle:
- XProcessingInstruction.cs
Initialisiert eine neue Instanz der XProcessingInstruction-Klasse.
public:
XProcessingInstruction(System::String ^ target, System::String ^ data);
public XProcessingInstruction (string target, string data);
new System.Xml.Linq.XProcessingInstruction : string * string -> System.Xml.Linq.XProcessingInstruction
Public Sub New (target As String, data As String)
Parameter
- target
- String
Ein String mit der Zielanwendung für diese XProcessingInstruction.
- data
- String
Die Zeichenfolgendaten für diese XProcessingInstruction.
Ausnahmen
Der target
-Parameter oder der data
-Parameter ist null
.
Das target
entspricht nicht den Einschränkungen für XML-Namen.
Beispiele
Im folgenden Beispiel wird ein XProcessingInstructionerstellt und ein Ziel und die Zeichenfolgendaten für die Verarbeitungsanweisung angegeben.
XProcessingInstruction pi = new XProcessingInstruction("xml-stylesheet", "type='text/xsl' href='hello.xsl'");
Console.WriteLine(pi);
Dim pi As XProcessingInstruction = <?xml-stylesheet type='text/xsl' href='hello.xsl'?>
Console.WriteLine(pi)
Dieses Beispiel erzeugt die folgende Ausgabe:
<?xml-stylesheet type='text/xsl' href='hello.xsl'?>