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

Update XML documentation of JsonWebTokenHandler.CreateToken(SecurityTokenDescriptor tokenDescriptor) #2055

Merged
merged 1 commit into from Apr 18, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,10 @@ public virtual string CreateToken(string payload, SigningCredentials signingCred
}

/// <summary>
/// Creates a JWS(Json Web Signature).
/// Creates a JWS (Json Web Signature) or a JWE (Json Web Encryption).
/// </summary>
/// <param name="tokenDescriptor">A <see cref="SecurityTokenDescriptor"/> that contains details of contents of the token.</param>
/// <returns>A JWS in Compact Serialization Format.</returns>
/// <returns>A JWS in Compact Serialization Format or a JWE if <see cref="SecurityTokenDescriptor.EncryptingCredentials"/> is specified.</returns>
public virtual string CreateToken(SecurityTokenDescriptor tokenDescriptor)
{
if (tokenDescriptor == null)
Expand Down