HostedServiceUpdateParameters.ExtendedProperties Property
Gets or sets a collection of properties that are added to the deployment of a cloud service.
Namespace: Microsoft.WindowsAzure.Management.Compute.Models
Assembly: Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)
Syntax
public IDictionary<string, string> ExtendedProperties { get; set; }
public:
property IDictionary<String^, String^>^ ExtendedProperties {
IDictionary<String^, String^>^ get();
void set(IDictionary<String^, String^>^ value);
}
member ExtendedProperties : IDictionary<string, string> with get, set
Public Property ExtendedProperties As IDictionary(Of String, String)
Property Value
Type: System.Collections.Generic.IDictionary<String, String>
A collection of properties.
Remarks
Each property must have a name and value. You can add a maximum of 50 properties. The maximum length of the name is 64 alphanumeric and underscore characters, and the name must start with a letter.
See Also
HostedServiceUpdateParameters Class
Microsoft.WindowsAzure.Management.Compute.Models Namespace
Return to top