XObject.Annotation メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Annotation(Type) |
この XObject から指定した型の最初の注釈オブジェクトを取得します。 |
Annotation<T>() |
この XObject から指定した型の最初の注釈オブジェクトを取得します。 |
Annotation(Type)
この XObject から指定した型の最初の注釈オブジェクトを取得します。
public:
System::Object ^ Annotation(Type ^ type);
public object Annotation (Type type);
public object? Annotation (Type type);
member this.Annotation : Type -> obj
Public Function Annotation (type As Type) As Object
パラメーター
- type
- Type
取得する注釈の型。
戻り値
指定した型に一致する最初の注釈オブジェクトを格納する Object。いずれの注釈も指定した型でない場合は null
。
例
次の例では、注釈 XElementを . 次に、取得する型を指定して注釈を取得します。
public class MyAnnotation {
private string tag;
public string Tag {get{return tag;} set{tag=value;}}
public MyAnnotation(string tag) {
this.tag = tag;
}
}
public class Program {
public static void Main(string[] args) {
MyAnnotation ma = new MyAnnotation("T1");
XElement root = new XElement("Root", "content");
root.AddAnnotation(ma);
MyAnnotation ma2 = (MyAnnotation)root.Annotation(typeof(MyAnnotation));
Console.WriteLine(ma2.Tag);
}
}
Public Class MyAnnotation
Private _tag As String
Property Tag() As String
Get
Return Me._tag
End Get
Set(ByVal Value As String)
Me._tag = Value
End Set
End Property
Public Sub New(ByVal tag As String)
Me._tag = tag
End Sub
End Class
Module Module1
Sub Main()
Dim ma As MyAnnotation = New MyAnnotation("T1")
Dim root As XElement = <Root>content</Root>
root.AddAnnotation(ma)
Dim ma2 As MyAnnotation = DirectCast(root.Annotation(GetType(MyAnnotation)), MyAnnotation)
Console.WriteLine(ma2.Tag)
End Sub
End Module
この例を実行すると、次の出力が生成されます。
T1
こちらもご覧ください
適用対象
Annotation<T>()
この XObject から指定した型の最初の注釈オブジェクトを取得します。
public:
generic <typename T>
where T : class T Annotation();
public T Annotation<T> () where T : class;
public T? Annotation<T> () where T : class;
member this.Annotation : unit -> 'T (requires 'T : null)
Public Function Annotation(Of T As Class) () As T
型パラメーター
- T
取得する注釈の型。
戻り値
- T
指定した型に一致する最初の注釈オブジェクト。いずれの注釈も指定した型でない場合は null
。
例
次の例では、要素に注釈を追加し、このメソッドを使用して取得します。
public class MyAnnotation {
private string tag;
public string Tag {get{return tag;} set{tag=value;}}
public MyAnnotation(string tag) {
this.tag = tag;
}
}
public class Program {
public static void Main(string[] args) {
MyAnnotation ma = new MyAnnotation("T1");
XElement root = new XElement("Root", "content");
root.AddAnnotation(ma);
MyAnnotation ma2 = root.Annotation<MyAnnotation>();
Console.WriteLine(ma2.Tag);
}
}
Public Class MyAnnotation
Private _tag As String
Property Tag() As String
Get
Return Me._tag
End Get
Set(ByVal Value As String)
Me._tag = Value
End Set
End Property
Public Sub New(ByVal tag As String)
Me._tag = tag
End Sub
End Class
Module Module1
Sub Main()
Dim ma As MyAnnotation = New MyAnnotation("T1")
Dim root As XElement = <Root>content</Root>
root.AddAnnotation(ma)
Dim ma2 As MyAnnotation = root.Annotation(Of MyAnnotation)()
Console.WriteLine(ma2.Tag)
End Sub
End Module
この例を実行すると、次の出力が生成されます。
T1