-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Make TokenExtensions.UpdateTokenValue() tokenValue parameter nullable #62482
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
Changes from 1 commit
c90eb2e
de9106d
d0f8256
b4e5be4
68eb1cb
68db86d
94db68d
8aac5ed
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,9 +71,9 @@ | |
/// </summary> | ||
/// <param name="properties">The <see cref="AuthenticationProperties"/> to update.</param> | ||
/// <param name="tokenName">The token name.</param> | ||
/// <param name="tokenValue">The token value.</param> | ||
/// <param name="tokenValue">The token value. May be <c>null</c>.</param> | ||
/// <returns><see langword="true"/> if the token was updated, otherwise <see langword="false"/>.</returns> | ||
public static bool UpdateTokenValue(this AuthenticationProperties properties, string tokenName, string tokenValue) | ||
public static bool UpdateTokenValue(this AuthenticationProperties properties, string tokenName, string? tokenValue) | ||
Check failure on line 76 in src/Http/Authentication.Abstractions/src/TokenExtensions.cs
|
||
{ | ||
ArgumentNullException.ThrowIfNull(properties); | ||
ArgumentNullException.ThrowIfNull(tokenName); | ||
|
Uh oh!
There was an error while loading. Please reload this page.