TableEntity.ReadUserObject Method

Windows Runtime Azure Storage Client Library

Deserializes a custom entity instance using the specified IDictionary of property names to EntityProperty data typed values.

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

Usage

Visual Basic
Dim entity As Object
Dim properties As IDictionary(Of String, EntityProperty)
Dim operationContext As OperationContext

TableEntity.ReadUserObject(entity, properties, operationContext)

Syntax

Visual Basic
Public Shared Sub ReadUserObject ( _
	entity As Object, _
	properties As IDictionary(Of String, EntityProperty), _
	operationContext As OperationContext _
)
C#
public static void ReadUserObject (
	Object entity,
	IDictionary<string,EntityProperty> properties,
	OperationContext operationContext
)
C++
public:
static void ReadUserObject (
	Object^ entity, 
	IDictionary<String^, EntityProperty^>^ properties, 
	OperationContext^ operationContext
)
J#
public static void ReadUserObject (
	Object entity, 
	IDictionary<String,EntityProperty> properties, 
	OperationContext operationContext
)
JScript
public static function ReadUserObject (
	entity : Object, 
	properties : IDictionary<String,EntityProperty>, 
	operationContext : OperationContext
)

Parameters

entity

The custom entity instance being deserialized.

properties

An IDictionary object that maps 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

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