XProcessingInstruction.Target 属性

定义

获取或设置包含此处理指令的目标应用程序的字符串。

public:
 property System::String ^ Target { System::String ^ get(); void set(System::String ^ value); };
public string Target { get; set; }
member this.Target : string with get, set
Public Property Target As String

属性值

String

一个包含此处理指令的目标应用程序的 String

例外

字符串 valuenull

target 没有遵循 XML 名称的约束。

示例

以下示例使用 Target 该属性检索目标应用程序以执行处理指令。

XProcessingInstruction pi =  
    new XProcessingInstruction("xml-stylesheet", "type=\"text/xsl\" href=\"hello.xsl\"");  
Console.WriteLine(pi.Target);  
Dim pi As XProcessingInstruction = _  
    <?xml-stylesheet type="text/xsl" href="hello.xsl"?>  
Console.WriteLine(pi.Target)  

该示例产生下面的输出:

xml-stylesheet  

适用于

另请参阅