Populates the entity's properties from the
EntityProperty data values in the
properties dictionary.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As ITableEntity
Dim properties As IDictionary(Of String, EntityProperty)
Dim operationContext As OperationContext
instance.ReadEntity(properties, operationContext) |
Syntax
Visual Basic |
---|
Sub ReadEntity ( _
properties As IDictionary(Of String, EntityProperty), _
operationContext As OperationContext _
) |
C# |
---|
void ReadEntity (
IDictionary<string,EntityProperty> properties,
OperationContext operationContext
) |
C++ |
---|
void ReadEntity (
IDictionary<String^, EntityProperty^>^ properties,
OperationContext^ operationContext
) |
J# |
---|
void ReadEntity (
IDictionary<String,EntityProperty> properties,
OperationContext operationContext
) |
JScript |
---|
function ReadEntity (
properties : IDictionary<String,EntityProperty>,
operationContext : OperationContext
) |
Parameters
- properties
The dictionary of string property names to EntityProperty data values to deserialize and store in this table entity instance.
- operationContext
An OperationContext object that represents the context for the current operation.
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