Skip to content

Commit 1890207

Browse files
committed
Adding code comments
1 parent 70c7665 commit 1890207

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryVaults.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ public override void ExecuteCmdlet()
5959
}
6060
}
6161

62+
/// <summary>
63+
/// Queries all, by default.
64+
/// </summary>
6265
private void GetByDefault()
6366
{
6467
IEnumerable<CloudService> cloudServiceList = RecoveryServicesClient.GetCloudServices();
@@ -78,6 +81,9 @@ private void GetByDefault()
7881
this.WriteVaults(vaultList);
7982
}
8083

84+
/// <summary>
85+
/// Queries by name.
86+
/// </summary>
8187
private void GetByName()
8288
{
8389
bool vaultFound = false;
@@ -119,7 +125,7 @@ private void WriteVaults(IList<ASRVault> vaultList)
119125
}
120126

121127
/// <summary>
122-
/// Writes Vaults
128+
/// Writes Vault
123129
/// </summary>
124130
/// <param name="vault">Vault object</param>
125131
private void WriteVault(ASRVault vault)

0 commit comments

Comments
 (0)