XProcessingInstruction.Data Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit la valeur de chaîne de cette instruction de traitement.
public:
property System::String ^ Data { System::String ^ get(); void set(System::String ^ value); };
public string Data { get; set; }
member this.Data : string with get, set
Public Property Data As String
Valeur de propriété
String qui contient la valeur de chaîne de cette instruction de traitement.
Exceptions
La value
de chaîne est null
.
Exemples
L’exemple suivant utilise la Data propriété pour récupérer la valeur de chaîne d’une instruction de traitement.
XProcessingInstruction pi =
new XProcessingInstruction("xml-stylesheet", "type='text/xsl' href='hello.xsl'");
Console.WriteLine(pi.Data);
pi.Data = "type='text/xsl' href='xform.xsl'";
Console.WriteLine(pi.Data);
Dim pi As XProcessingInstruction = <?xml-stylesheet type='text/xsl' href='hello.xsl'?>
Console.WriteLine(pi.Data)
pi.Data = "type='text/xsl' href='xform.xsl'"
Console.WriteLine(pi.Data)
Cet exemple produit la sortie suivante :
type='text/xsl' href='hello.xsl'
type='text/xsl' href='xform.xsl'
Remarques
Vous pouvez utiliser cette propriété pour modifier une arborescence XML. Cette propriété entraîne la survenue d’événements.