XObject.RemoveAnnotations Metodo

Definizione

Overload

RemoveAnnotations(Type)

Rimuove le annotazioni del tipo specificato da XObject.

RemoveAnnotations<T>()

Rimuove le annotazioni del tipo specificato da XObject.

RemoveAnnotations(Type)

Rimuove le annotazioni del tipo specificato da XObject.

public void RemoveAnnotations (Type type);

Parametri

type
Type

Tipo di annotazioni da rimuovere.

Esempio

Nell'esempio seguente viene creato un elemento con quattro annotazioni. Usa quindi questo metodo per rimuovere due di essi.

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");  

        Console.WriteLine("Count before removing: {0}", root.Annotations<object>().Count());  
        root.RemoveAnnotations(typeof(MyAnnotation));  
        Console.WriteLine("Count after removing: {0}", root.Annotations<object>().Count());  
    }  
}  

Nell'esempio viene prodotto l'output seguente:

Count before removing: 4  
Count after removing: 2  

Vedi anche

Si applica a

RemoveAnnotations<T>()

Rimuove le annotazioni del tipo specificato da XObject.

public void RemoveAnnotations<T> () where T : class;

Parametri di tipo

T

Tipo di annotazioni da rimuovere.

Esempio

Nell'esempio seguente viene creato un elemento con quattro annotazioni. Usa quindi questo metodo per rimuovere due di essi.

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");  

        Console.WriteLine("Count before removing: {0}", root.Annotations<object>().Count());  
        root.RemoveAnnotations<MyAnnotation>();  
        Console.WriteLine("Count after removing: {0}", root.Annotations<object>().Count());  
    }  
}  

Nell'esempio viene prodotto l'output seguente:

Count before removing: 4  
Count after removing: 2  

Vedi anche

Si applica a