XObject.Annotations Metodo

Definizione

Overload

Annotations(Type)

Ottiene una raccolta di annotazioni del tipo specificato per XObject.

Annotations<T>()

Ottiene una raccolta di annotazioni del tipo specificato per XObject.

Annotations(Type)

Ottiene una raccolta di annotazioni del tipo specificato per XObject.

public System.Collections.Generic.IEnumerable<object> Annotations (Type type);

Parametri

type
Type

Tipo di annotazioni da recuperare.

Restituisce

IEnumerable<Object>

IEnumerable<T> di Object che contiene le annotazioni che corrispondono al tipo specificato per XObject.

Esempio

Nell'esempio seguente vengono aggiunte alcune annotazioni a un oggetto XElement, quindi viene recuperata una raccolta di annotazioni usando questo metodo.

public class MyAnnotation  
{  
    private string tag;  
    public string Tag { get { return tag; } set { tag = value; } }  
    public MyAnnotation(string tag)  
    {  
        this.tag = tag;  
    }  
}  

class Program  
{  
    static void Main(string[] args)  
    {  
        XElement root = new XElement("Root", "content");  
        root.AddAnnotation(new MyAnnotation("T1"));  
        root.AddAnnotation(new MyAnnotation("T2"));  
        root.AddAnnotation("abc");  
        root.AddAnnotation("def");  

        IEnumerable<object> annotationList;  
        annotationList = root.Annotations(typeof(MyAnnotation));  
        foreach (object ma in annotationList)  
            Console.WriteLine(((MyAnnotation)ma).Tag);  
        Console.WriteLine("----");  

        IEnumerable<object> stringAnnotationList;  
        stringAnnotationList = root.Annotations(typeof(string));  
        foreach (object str in stringAnnotationList)  
            Console.WriteLine((string)str);  
    }  
}  

Nell'esempio viene prodotto l'output seguente:

T1  
T2  
----  
abc  
def  

Vedi anche

Si applica a

.NET 7 e altre versioni
Prodotto Versioni
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

Annotations<T>()

Ottiene una raccolta di annotazioni del tipo specificato per XObject.

public System.Collections.Generic.IEnumerable<T> Annotations<T> () where T : class;

Parametri di tipo

T

Tipo di annotazioni da recuperare.

Restituisce

IEnumerable<T>

IEnumerable<T> che contiene le annotazioni per XObject.

Esempio

Nell'esempio seguente viene utilizzato questo metodo per recuperare le annotazioni in un elemento .

public class MyAnnotation {  
    private string tag;  
    public string Tag {get{return tag;} set{tag=value;}}  
    public MyAnnotation(string tag) {  
        this.tag = tag;  
    }  
}  

class Program {  
    static void Main(string[] args) {     
        XElement root = new XElement("Root", "content");  
        root.AddAnnotation(new MyAnnotation("T1"));  
        root.AddAnnotation(new MyAnnotation("T2"));  
        root.AddAnnotation("abc");  
        root.AddAnnotation("def");  

        IEnumerable<MyAnnotation> annotationList;  
        annotationList = root.Annotations<MyAnnotation>();  
        foreach (MyAnnotation ma in annotationList)  
            Console.WriteLine(ma.Tag);  
        Console.WriteLine("----");  

        IEnumerable<string> stringAnnotationList;  
        stringAnnotationList = root.Annotations<string>();  
        foreach (string str in stringAnnotationList)  
            Console.WriteLine(str);  
    }  
}  

Nell'esempio viene prodotto l'output seguente:

T1  
T2  
----  
abc  
def  

Vedi anche

Si applica a

.NET 7 e altre versioni
Prodotto Versioni
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0