Skip to content

Commit fe1dcfa

Browse files
v-yuzhichenZiyue Zheng
andauthored
Fix Az.DataLakeStore XML Comments (#18421)
* Fix Az.DataLakeStore XML Comments * Fix Az.DataLakeStore XML Comments Co-authored-by: Ziyue Zheng <[email protected]>
1 parent b470c3b commit fe1dcfa

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemClient.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -776,6 +776,7 @@ public void GetFileProperties(string accountName, string path, bool getAclUsage,
776776
/// <param name="accountName">Account name</param>
777777
/// <param name="filter">Query to match items in trash</param>
778778
/// <param name="count">Minimum number of entries to search for</param>
779+
/// <param name="cmdlet"></param>
779780
/// <param name="cmdletCancellationToken">CancellationToken</param>
780781
public IEnumerable<TrashEntry> EnumerateDeletedItems(string accountName, string filter, int count, Cmdlet cmdlet, CancellationToken cmdletCancellationToken = default(CancellationToken))
781782
{
@@ -801,6 +802,7 @@ public void GetFileProperties(string accountName, string path, bool getAclUsage,
801802
/// Restore a stream or directory from trash to user space. This is a synchronous operation.
802803
/// Not threadsafe when Restore is called for same path from different threads.
803804
/// </summary>
805+
/// <param name="accountName">Account name</param>
804806
/// <param name="path">The trash directory path in enumeratedeleteditems response</param>
805807
/// <param name="destination">Path to where the entry should be restored</param>
806808
/// <param name="type">Type of the entry which is being restored. "file" or "folder"</param>

src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemCmdletBase.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,7 @@ internal static bool UsingByteEncoding(Encoding encoding)
7474
/// Converts the stream type string into an Encoding
7575
/// </summary>
7676
/// <param name="content">The content.</param>
77-
/// <param name="type">
78-
/// This is a string representation of the encoding. It can be
79-
/// "string", "unicode", "bigendianunicode", "ascii", "utf7", or "utf8"
80-
/// Note, a ToLowerInvariant is done to the type before comparison is made.
81-
/// </param>
77+
/// <param name="encoding"></param>
8278
/// <returns>
8379
/// The encoding that was represented by the string
8480
/// </returns>

src/DataLakeStore/DataLakeStore/Models/DataLakeStoreFirewallRule.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ public class DataLakeStoreFirewallRule
3030
/// <summary>
3131
/// Initializes a new instance of the <see cref="DataLakeStoreItem" /> class.
3232
/// </summary>
33-
/// <param name="property">The property.</param>
34-
/// <param name="optionalName">The optional name of the file or folder</param>
35-
/// <param name="optionalPath">The optional full path to the file or folder, excluding the file or folder name itself.</param>
33+
/// <param name="baseRule"></param>
3634
public DataLakeStoreFirewallRule(FirewallRule baseRule)
3735
{
3836
Name = baseRule.Name;

src/DataLakeStore/DataLakeStore/Models/DataLakeStoreTrustedIdProvider.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ public class DataLakeStoreTrustedIdProvider
2828
/// <summary>
2929
/// Initializes a new instance of the <see cref="DataLakeStoreItem" /> class.
3030
/// </summary>
31-
/// <param name="property">The property.</param>
32-
/// <param name="optionalName">The optional name of the file or folder</param>
33-
/// <param name="optionalPath">The optional full path to the file or folder, excluding the file or folder name itself.</param>
31+
/// <param name="baseProvider"></param>
3432
public DataLakeStoreTrustedIdProvider(TrustedIdProvider baseProvider)
3533
{
3634
Name = baseProvider.Name;

0 commit comments

Comments
 (0)