Skip to content

Commit

Permalink
Fix Az.StorageSync XML comments (#18603)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyuezh576 authored Jun 22, 2022
1 parent 478c1c8 commit da5762a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.StorageSync.Common.Converters

/// <summary>
/// Class BackgroundDataDownloadActivityConverter.
/// Implements the <see cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, ServerEndpointBackgroundDataDownloadActivity}"
/// Implements the <see cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, ServerEndpointBackgroundDataDownloadActivity}" />
/// </summary>
/// <seealso cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, ServerEndpointBackgroundDataDownloadActivity}" />
public class BackgroundDataDownloadActivityConverter : ConverterBase<PSBackgroundDataDownloadActivity, StorageSyncModels.ServerEndpointBackgroundDataDownloadActivity>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common
{
/// <summary>
/// Class StorageSyncClientWrapper.
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.IStorageSyncClientWrapper" />
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Interfaces.IStorageSyncClientWrapper" />
/// </summary>
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Interfaces.IStorageSyncClientWrapper" />
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.IStorageSyncClientWrapper" />
public class StorageSyncClientWrapper : IStorageSyncClientWrapper
{
/// <summary>
Expand Down Expand Up @@ -108,7 +106,7 @@ public class StorageSyncClientWrapper : IStorageSyncClientWrapper
/// Initializes a new instance of the <see cref="StorageSyncClientWrapper" /> class.
/// </summary>
/// <param name="context">The context.</param>
/// <param name="activeDirectoryClient">The active directory client.</param>
/// <param name="microsoftGraphClient">The active directory client.</param>
public StorageSyncClientWrapper(IAzureContext context, MicrosoftGraphClient microsoftGraphClient)
: this(AzureSession.Instance.ClientFactory.CreateArmClient<StorageSyncManagementClient>(context, AzureEnvironment.Endpoint.ResourceManager),
AzureSession.Instance.ClientFactory.CreateArmClient<AuthorizationManagementClient>(context, AzureEnvironment.Endpoint.ResourceManager),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common
{
/// <summary>
/// Class StorageSyncResourceManager.
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.IStorageSyncResourceManager" />
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Interfaces.IStorageSyncResourceManager" />
/// </summary>
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Interfaces.IStorageSyncResourceManager" />
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.IStorageSyncResourceManager" />
public class StorageSyncResourceManager : IStorageSyncResourceManager
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ namespace Commands.StorageSync.Interop.Clients
{
/// <summary>
/// Function performs server certificate rollover
/// Implements the <see cref="StorageSync.Management.PowerShell.Cmdlets.CertificateRollover.ISyncServerCertificateRollover" />
/// Implements the <see cref="Commands.StorageSync.Interop.Interfaces.ISyncServerCertificateRollover" />
/// </summary>
/// <seealso cref="Commands.StorageSync.Interop.Interfaces.ISyncServerCertificateRollover" />
/// <seealso cref="StorageSync.Management.PowerShell.Cmdlets.CertificateRollover.ISyncServerCertificateRollover" />
public class SyncServerCertificateRolloverClient : ISyncServerCertificateRollover
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/StorageSync/StorageSync/Models/PSRegisteredServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public class PSRegisteredServer : PSResourceBase
/// <value>The management endpoint URI.</value>
public string ManagementEndpointUri { get; set; }

// <summary>
/// <summary>
/// Gets or sets the monitoring endpoint URI.
/// </summary>
/// <value>The monitoring endpoint URI.</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public class NewServerEndpointCommand : StorageSyncClientCmdletBase
HelpMessage = HelpMessages.TierFilesOlderThanDaysParameter)]
public int? TierFilesOlderThanDays { get; set; }

// <summary>
/// <summary>
/// Gets or sets a value indicating the policy to use for the initial download sync.
/// </summary>
/// <value>The initial download policy.</value>
Expand All @@ -197,7 +197,7 @@ public class NewServerEndpointCommand : StorageSyncClientCmdletBase
IgnoreCase = true)]
public string LocalCacheMode { get; set; }

// <summary>
/// <summary>
/// Gets or sets a value indicating the policy to use for the initial upload sync.
/// </summary>
/// <value>The initial upload policy.</value>
Expand Down

0 comments on commit da5762a

Please sign in to comment.