TableEntity.WriteEntity Method

Windows Runtime Azure Storage Client Library

Serializes the IDictionary of property names mapped to EntityProperty data values from this TableEntity instance.

Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Usage

Visual Basic
Dim instance As TableEntity
Dim operationContext As OperationContext
Dim returnValue As IDictionary(Of String, EntityProperty)

returnValue = instance.WriteEntity(operationContext)

Syntax

Visual Basic
Public Overridable Function WriteEntity ( _
	operationContext As OperationContext _
) As IDictionary(Of String, EntityProperty)
C#
public virtual IDictionary<string,EntityProperty> WriteEntity (
	OperationContext operationContext
)
C++
public:
virtual IDictionary<String^, EntityProperty^>^ WriteEntity (
	OperationContext^ operationContext
)
J#
public IDictionary<String,EntityProperty> WriteEntity (
	OperationContext operationContext
)
JScript
public function WriteEntity (
	operationContext : OperationContext
) : IDictionary<String,EntityProperty>

Parameters

operationContext

An OperationContext object that represents the context for the current operation.

Return Value

An IDictionary object that maps string property names to EntityProperty typed values created by serializing this table entity instance.

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