ITableEntity.WriteEntity Method

Windows Runtime Azure Storage Client Library

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

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

Usage

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

returnValue = instance.WriteEntity(operationContext)

Syntax

Visual Basic
Function WriteEntity ( _
	operationContext As OperationContext _
) As IDictionary(Of String, EntityProperty)
C#
IDictionary<string,EntityProperty> WriteEntity (
	OperationContext operationContext
)
C++
IDictionary<String^, EntityProperty^>^ WriteEntity (
	OperationContext^ operationContext
)
J#
IDictionary<String,EntityProperty> WriteEntity (
	OperationContext operationContext
)
JScript
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 of property names to EntityProperty data 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