XObject.AddAnnotation(Object) Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Agrega un objeto a la lista de anotaciones de XObject.
public:
void AddAnnotation(System::Object ^ annotation);
public void AddAnnotation (object annotation);
member this.AddAnnotation : obj -> unit
Public Sub AddAnnotation (annotation As Object)
Parámetros
- annotation
- Object
Objeto que contiene la anotación que se va a agregar.
Ejemplos
En el ejemplo siguiente se agrega una anotación a .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
Este ejemplo produce el siguiente resultado:
T1
Comentarios
Tenga en cuenta que las anotaciones no forman parte del conjunto de información; no se conservan ni se muestran mediante ToString. Además, si importa un espacio de nombres XML en el proyecto de VB y llama a AddAnnotation con el valor de enumeración SaveOptions.OmitDuplicateNamespaces, solo un elemento contendrá el atributo espacio de nombres XML en lugar de cada elemento. Para obtener más información, vea Eliminación de espacios de nombres duplicados en literales XML.