XObject.Annotation<T> Method
.NET Framework 4
Get the first annotation object of the specified type from this XObject.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
The following example adds an annotation to an element, and then retrieves it through this method.
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); } }
This example produces the following output:
T1
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.