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