Represents the base object type for a table entity in the Table service.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As TableEntity |
Syntax
Visual Basic |
---|
Public Class TableEntity Implements ITableEntity |
C# |
---|
public class TableEntity : ITableEntity |
C++ |
---|
public ref class TableEntity : ITableEntity |
J# |
---|
public class TableEntity implements ITableEntity |
JScript |
---|
public class TableEntity implements ITableEntity |
Remarks
TableEntity provides a base implementation for the ITableEntity interface that provides ReadEntity and WriteEntity methods that by default serialize and deserialize all properties via reflection. A table entity class may extend this class and override the ReadEntity and WriteEntity methods to provide customized or better performing serialization logic.
Inheritance Hierarchy
System.Object
Microsoft.WindowsAzure.Storage.Table.TableEntity
Microsoft.WindowsAzure.Storage.Table.TableEntity
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.