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
See Also