示例#1
0
 /// <summary>
 /// Initializes a new instance of the StorageAccountInfo class.
 /// </summary>
 /// <param name="name">the account name associated with the Azure
 /// storage account.</param>
 /// <param name="properties">the properties associated with this
 /// storage account.</param>
 public StorageAccountInfo(string name, StorageAccountProperties properties)
 {
     Name       = name;
     Properties = properties;
 }
 /// <summary>
 /// Initializes a new instance of the AddStorageAccountParameters
 /// class.
 /// </summary>
 /// <param name="properties">the properties for the Azure Storage
 /// account being added.</param>
 public AddStorageAccountParameters(StorageAccountProperties properties)
 {
     Properties = properties;
 }