DataTable.ExtendedProperties Propiedad
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í.
Obtiene la colección de información personalizada del usuario.
public:
property System::Data::PropertyCollection ^ ExtendedProperties { System::Data::PropertyCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Data.PropertyCollection ExtendedProperties { get; }
[System.ComponentModel.Browsable(false)]
[System.Data.DataSysDescription("ExtendedPropertiesDescr")]
public System.Data.PropertyCollection ExtendedProperties { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ExtendedProperties : System.Data.PropertyCollection
[<System.ComponentModel.Browsable(false)>]
[<System.Data.DataSysDescription("ExtendedPropertiesDescr")>]
member this.ExtendedProperties : System.Data.PropertyCollection
Public ReadOnly Property ExtendedProperties As PropertyCollection
Valor de propiedad
PropertyCollection que contiene información personalizada del usuario.
- Atributos
Ejemplos
En el ejemplo siguiente se agrega un valor de marca de tiempo a DataTable a través de la ExtendedProperties propiedad .
private void GetAndSetExtendedProperties(DataTable myTable){
// Add an item to the collection.
myTable.ExtendedProperties.Add("TimeStamp", DateTime.Now);
// Print the item.
Console.WriteLine(myTable.ExtendedProperties["TimeStamp"]);
}
Private Sub GetAndSetExtendedProperties(ByVal myTable As DataTable)
' Add an item to the collection.
myTable.ExtendedProperties.Add("TimeStamp", DateTime.Now)
' Print the item.
Console.WriteLine(myTable.ExtendedProperties.Item("TimeStamp"))
End Sub
Comentarios
ExtendedProperties Use para agregar información personalizada a .DataTable Agregue información con el Add
método . Recupere información con el Item
método .
Las propiedades extendidas deben ser de tipo String. Las propiedades que no son de tipo String no se conservan cuando DataTable se escribe como XML.