Serializes the
IDictionary of property names mapped to values of type
EntityProperty from this
DynamicTableEntity instance.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As DynamicTableEntity
Dim operationContext As OperationContext
Dim returnValue As IDictionary(Of String, EntityProperty)
returnValue = instance.WriteEntity(operationContext) |
Syntax
Visual Basic |
---|
Public Function WriteEntity ( _
operationContext As OperationContext _
) As IDictionary(Of String, EntityProperty) |
C# |
---|
public IDictionary<string,EntityProperty> WriteEntity (
OperationContext operationContext
) |
C++ |
---|
public:
virtual IDictionary<String^, EntityProperty^>^ WriteEntity (
OperationContext^ operationContext
) sealed |
J# |
---|
public final IDictionary<String,EntityProperty> WriteEntity (
OperationContext operationContext
) |
JScript |
---|
public final 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 containing the map of string property names to values of type
EntityProperty stored in this
DynamicTableEntity 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