Class OpenIddictMongoDbAuthorization
Represents an OpenIddict authorization.
Inheritance
System.Object
OpenIddictMongoDbAuthorization
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OpenIddict.MongoDb.Models
Assembly: cs.temp.dll.dll
Syntax
public class OpenIddictMongoDbAuthorization
Properties
ApplicationId
Gets or sets the identifier of the application associated with the current authorization.
Declaration
public virtual ObjectId ApplicationId { get; set; }
Property Value
Type | Description |
---|---|
ObjectId |
ConcurrencyToken
Gets or sets the concurrency token.
Declaration
public virtual string ConcurrencyToken { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CreationDate
Gets or sets the UTC creation date of the current authorization.
Declaration
public virtual DateTime? CreationDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<DateTime> |
Id
Gets or sets the unique identifier associated with the current authorization.
Declaration
public virtual ObjectId Id { get; set; }
Property Value
Type | Description |
---|---|
ObjectId |
Properties
Gets or sets the additional properties associated with the current authorization.
Declaration
public virtual BsonDocument? Properties { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<BsonDocument> |
Scopes
Gets or sets the scopes associated with the current authorization.
Declaration
public virtual IReadOnlyList<string> Scopes { get; set; }
Property Value
Type | Description |
---|---|
IReadOnlyList<System.String> |
Status
Gets or sets the status of the current authorization.
Declaration
public virtual string Status { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Subject
Gets or sets the subject associated with the current authorization.
Declaration
public virtual string Subject { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Type
Gets or sets the type of the current authorization.
Declaration
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |