XObject.AddAnnotation(Object) Methode

Definition

Fügt der Anmerkungsliste dieses XObjectObjekts ein Objekt hinzu.

public:
 void AddAnnotation(System::Object ^ annotation);
public void AddAnnotation(object annotation);
member this.AddAnnotation : obj -> unit
Public Sub AddAnnotation (annotation As Object)

Parameter

annotation
Object

Ein Objekt, das die hinzuzufügende Anmerkung enthält.

Beispiele

Im folgenden Beispiel wird einer 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<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(Of MyAnnotation)(), MyAnnotation)
        Console.WriteLine(ma2.Tag)
    End Sub

End Module

Dieses Beispiel erzeugt die folgende Ausgabe:

T1

Hinweise

Beachten Sie, dass Anmerkungen nicht Teil des Infosets sind; sie werden nicht beibehalten oder angezeigt von ToString. Wenn Sie einen XML-Namespace in Ihr VB-Projekt importieren und AddAnnotation mit dem Enumerationswert SaveOptions.OmitDuplicateNamespaces aufrufen, enthält anstelle jedes Elements nur ein Element das XML-Namespace-Attribut. Weitere Informationen finden Sie unter Entfernen doppelter Namespaces in XML-Literalen.

Gilt für:

Weitere Informationen