XProcessingInstruction.Target 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置包含此处理指令的目标应用程序的字符串。
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。
例外
字符串 value
为 null
。
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