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

Add missing XML documentation. #165

Merged
merged 1 commit into from
Mar 17, 2025
Merged
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
4 changes: 3 additions & 1 deletion src/Amazon.Extensions.CognitoAuthentication/CognitoUser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ public partial class CognitoUser
/// <param name="provider">IAmazonCognitoIdentityProvider for the specified user pool</param>
/// <param name="clientSecret">Client secret for the specified client, if exists</param>
/// <param name="username">Username for user, if different from userID</param>
/// <param name="status">Status for user.</param>
/// <param name="attributes">User attributes.</param>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: can you make the order of the docs the same as they appear in the code?

public CognitoUser(string userID, string clientID,
CognitoUserPool pool,
IAmazonCognitoIdentityProvider provider,
Expand Down Expand Up @@ -833,4 +835,4 @@ private void EnsureUserAuthenticated()
}
}
}
}
}
Loading