StorageAccount.ExtendedProperties Property

Optional. Represents the name of an extended storage account property. Each extended property must have both a defined name and a value. You can have a maximum of 50 extended property name/value pairs. The maximum length of the Name element is 64 characters, only alphanumeric characters and underscores are valid in the Name, and the name must start with a letter. Attempting to use other characters, starting the Name with a non-letter character, or entering a name that is identical to that of another extended property owned by the same storage account, will result in a status code 400 (Bad Request) error. Each extended property value has a maximum length of 255 characters.

Namespace: Microsoft.WindowsAzure.Management.Storage.Models
Assembly: Microsoft.WindowsAzure.Management.Storage (in Microsoft.WindowsAzure.Management.Storage.dll)

Usage

'Usage
Dim instance As StorageAccount
Dim value As IDictionary(Of String, String)

value = instance.ExtendedProperties

instance.ExtendedProperties = value

Syntax

'Declaration
Public Property ExtendedProperties As IDictionary(Of String, String)
public IDictionary<string,string> ExtendedProperties { get; set; }
public:
property IDictionary<String^, String^>^ ExtendedProperties {
    IDictionary<String^, String^>^ get ();
    void set (IDictionary<String^, String^>^ value);
}
/** @property */
public IDictionary<String,String> get_ExtendedProperties ()

/** @property */
public void set_ExtendedProperties (IDictionary<String,String> value)
public function get ExtendedProperties () : IDictionary<String,String>

public function set ExtendedProperties (value : IDictionary<String,String>)

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

Reference

StorageAccount Class
StorageAccount Members
Microsoft.WindowsAzure.Management.Storage.Models Namespace