共用方式為


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  

適用於

另請參閱