Class IdentityProviderBasicInfo
Basic information about an identity provider
Inheritance
IdentityProviderBasicInfo
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class IdentityProviderBasicInfo
Properties
Display name of the identity provider as defined in IdentityServer
Declaration
[JsonProperty("displayName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string DisplayName { get; set; }
Property Value
Identity provider ID (has to match an existing IdP defined in IdentityServer)
Declaration
[JsonProperty("id", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Id { get; set; }
Property Value
Name of the identity provider as defined in IdentityServer
Declaration
[JsonProperty("name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
Property Value
Methods
Declaration
public static IdentityProviderBasicInfo FromJson(string data)
Parameters
Returns