Table of Contents

Class KeyRotationEntity

Namespace
Microsoft.WindowsAzure.Storage.Table
Assembly
Microsoft.WindowsAzure.Storage.dll

An entity used for key rotation

public class KeyRotationEntity
Inheritance
KeyRotationEntity
Inherited Members

Properties

ETag

Gets or sets the entity's current ETag.

public string ETag { get; }

Property Value

string

A string containing the ETag for the entity.

Remarks

Set this value to '*' to blindly overwrite an entity as part of an update operation.

this[string]

Gets or sets the entity's property, given the name of the property.

public EntityProperty this[string key] { get; }

Parameters

key string

A string containing the name of the property.

Property Value

EntityProperty

An EntityProperty object.

PartitionKey

Gets or sets the entity's partition key.

public string PartitionKey { get; }

Property Value

string

A string containing the partition key value for the entity.

Properties

Gets the properties in the table entity, indexed by property name.

public IReadOnlyDictionary<string, EntityProperty> Properties { get; }

Property Value

IReadOnlyDictionary<string, EntityProperty>

An IDictionary<TKey, TValue> object containing the entity's properties.

RowKey

Gets or sets the entity's row key.

public string RowKey { get; }

Property Value

string

A string containing the row key value for the entity.

Timestamp

Gets or sets the entity's timestamp.

public DateTimeOffset Timestamp { get; }

Property Value

DateTimeOffset

A DateTimeOffset containing the timestamp for the entity.