Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Az.DataLakeStore XML Comments #18421

Merged
merged 2 commits into from
Jun 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,7 @@ public void GetFileProperties(string accountName, string path, bool getAclUsage,
/// <param name="accountName">Account name</param>
/// <param name="filter">Query to match items in trash</param>
/// <param name="count">Minimum number of entries to search for</param>
/// <param name="cmdlet"></param>
/// <param name="cmdletCancellationToken">CancellationToken</param>
public IEnumerable<TrashEntry> EnumerateDeletedItems(string accountName, string filter, int count, Cmdlet cmdlet, CancellationToken cmdletCancellationToken = default(CancellationToken))
{
Expand All @@ -801,6 +802,7 @@ public void GetFileProperties(string accountName, string path, bool getAclUsage,
/// Restore a stream or directory from trash to user space. This is a synchronous operation.
/// Not threadsafe when Restore is called for same path from different threads.
/// </summary>
/// <param name="accountName">Account name</param>
/// <param name="path">The trash directory path in enumeratedeleteditems response</param>
/// <param name="destination">Path to where the entry should be restored</param>
/// <param name="type">Type of the entry which is being restored. "file" or "folder"</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,7 @@ internal static bool UsingByteEncoding(Encoding encoding)
/// Converts the stream type string into an Encoding
/// </summary>
/// <param name="content">The content.</param>
/// <param name="type">
/// This is a string representation of the encoding. It can be
/// "string", "unicode", "bigendianunicode", "ascii", "utf7", or "utf8"
/// Note, a ToLowerInvariant is done to the type before comparison is made.
/// </param>
/// <param name="encoding"></param>
/// <returns>
/// The encoding that was represented by the string
/// </returns>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ public class DataLakeStoreFirewallRule
/// <summary>
/// Initializes a new instance of the <see cref="DataLakeStoreItem" /> class.
/// </summary>
/// <param name="property">The property.</param>
/// <param name="optionalName">The optional name of the file or folder</param>
/// <param name="optionalPath">The optional full path to the file or folder, excluding the file or folder name itself.</param>
/// <param name="baseRule"></param>
public DataLakeStoreFirewallRule(FirewallRule baseRule)
{
Name = baseRule.Name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ public class DataLakeStoreTrustedIdProvider
/// <summary>
/// Initializes a new instance of the <see cref="DataLakeStoreItem" /> class.
/// </summary>
/// <param name="property">The property.</param>
/// <param name="optionalName">The optional name of the file or folder</param>
/// <param name="optionalPath">The optional full path to the file or folder, excluding the file or folder name itself.</param>
/// <param name="baseProvider"></param>
public DataLakeStoreTrustedIdProvider(TrustedIdProvider baseProvider)
{
Name = baseProvider.Name;
Expand Down