Browse Source

Remove OpenIddictTokenDescriptor.Properties

pull/919/head
Kévin Chalet 6 years ago
parent
commit
750ff208a1
  1. 8
      src/OpenIddict.Abstractions/Descriptors/OpenIddictTokenDescriptor.cs

8
src/OpenIddict.Abstractions/Descriptors/OpenIddictTokenDescriptor.cs

@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Security.Claims;
namespace OpenIddict.Abstractions
@ -40,13 +39,6 @@ namespace OpenIddict.Abstractions
/// </summary>
public ClaimsPrincipal Principal { get; set; }
/// <summary>
/// Gets the optional authentication properties associated with the token.
/// Note: this property is not stored by the default token stores.
/// </summary>
public IDictionary<string, string> Properties { get; } =
new Dictionary<string, string>(StringComparer.Ordinal);
/// <summary>
/// Gets or sets the reference identifier associated with the token.
/// Note: depending on the application manager used when creating it,

Loading…
Cancel
Save