Gets or sets the properties in the table entity, indexed by property name.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As DynamicTableEntity
Dim value As IDictionary(Of String, EntityProperty)
value = instance.Properties
instance.Properties = value |
Syntax
Visual Basic |
---|
Public Property Properties As IDictionary(Of String, EntityProperty) |
C# |
---|
public IDictionary<string,EntityProperty> Properties { get; set; } |
C++ |
---|
public:
property IDictionary<String^, EntityProperty^>^ Properties {
IDictionary<String^, EntityProperty^>^ get ();
void set (IDictionary<String^, EntityProperty^>^ value);
} |
J# |
---|
/** @property */
/** @attribute CompilerGeneratedAttribute() */
public IDictionary<String,EntityProperty> get_Properties ()
/** @property */
/** @attribute CompilerGeneratedAttribute() */
public void set_Properties (IDictionary<String,EntityProperty> value)
|
JScript |
---|
CompilerGeneratedAttribute
public function get Properties () : IDictionary<String,EntityProperty>
CompilerGeneratedAttribute
public function set Properties (value : IDictionary<String,EntityProperty>)
|
Property Value
An
IDictionary object containing the entity's properties.
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