Browse Source

Remove ApplyAuthorizationResponseContext/ApplyTokenResponseContext.Principal

pull/1319/head
Kévin Chalet 5 years ago
parent
commit
9af02669b2
  1. 5
      src/OpenIddict.Server/OpenIddictServerEvents.Authentication.cs
  2. 5
      src/OpenIddict.Server/OpenIddictServerEvents.Exchange.cs

5
src/OpenIddict.Server/OpenIddictServerEvents.Authentication.cs

@ -156,11 +156,6 @@ namespace OpenIddict.Server
set => Transaction.Response = value;
}
/// <summary>
/// Gets or sets the security principal.
/// </summary>
public ClaimsPrincipal? Principal { get; set; }
/// <summary>
/// Gets the access code expected to
/// be returned to the client application.

5
src/OpenIddict.Server/OpenIddictServerEvents.Exchange.cs

@ -126,11 +126,6 @@ namespace OpenIddict.Server
set => Transaction.Response = value;
}
/// <summary>
/// Gets or sets the security principal used to forge the token response.
/// </summary>
public ClaimsPrincipal? Principal { get; set; }
/// <summary>
/// Gets the error code returned to the client application.
/// When the response indicates a successful response,

Loading…
Cancel
Save