TableEntity Class

Windows Runtime Azure Storage Client Library

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)

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

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.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also