rama creada apartir de master en j
This commit is contained in:
@@ -0,0 +1,631 @@
|
||||
### YamlMime:ManagedReference
|
||||
items:
|
||||
- uid: adas_core.Authentication.Interfaces.ITokenService
|
||||
commentId: T:adas_core.Authentication.Interfaces.ITokenService
|
||||
id: ITokenService
|
||||
parent: adas_core.Authentication.Interfaces
|
||||
children:
|
||||
- adas_core.Authentication.Interfaces.ITokenService.GetRefreshToken
|
||||
- adas_core.Authentication.Interfaces.ITokenService.GetToken(System.String,System.Collections.Generic.List{System.Security.Claims.Claim})
|
||||
- adas_core.Authentication.Interfaces.ITokenService.RefreshTokenValidityInDays
|
||||
- adas_core.Authentication.Interfaces.ITokenService.Serialize(Microsoft.IdentityModel.Tokens.SecurityToken)
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ITokenService
|
||||
nameWithType: ITokenService
|
||||
fullName: adas_core.Authentication.Interfaces.ITokenService
|
||||
type: Interface
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: ITokenService
|
||||
path: ../../adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
startLine: 5
|
||||
assemblies:
|
||||
- adas-core.Authentication
|
||||
namespace: adas_core.Authentication.Interfaces
|
||||
syntax:
|
||||
content: public interface ITokenService
|
||||
content.vb: Public Interface ITokenService
|
||||
extensionMethods:
|
||||
- System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
||||
- System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
||||
- System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
||||
- uid: adas_core.Authentication.Interfaces.ITokenService.RefreshTokenValidityInDays
|
||||
commentId: P:adas_core.Authentication.Interfaces.ITokenService.RefreshTokenValidityInDays
|
||||
id: RefreshTokenValidityInDays
|
||||
parent: adas_core.Authentication.Interfaces.ITokenService
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: RefreshTokenValidityInDays
|
||||
nameWithType: ITokenService.RefreshTokenValidityInDays
|
||||
fullName: adas_core.Authentication.Interfaces.ITokenService.RefreshTokenValidityInDays
|
||||
type: Property
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: RefreshTokenValidityInDays
|
||||
path: ../../adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
startLine: 7
|
||||
assemblies:
|
||||
- adas-core.Authentication
|
||||
namespace: adas_core.Authentication.Interfaces
|
||||
syntax:
|
||||
content: int RefreshTokenValidityInDays { get; }
|
||||
parameters: []
|
||||
return:
|
||||
type: System.Int32
|
||||
content.vb: ReadOnly Property RefreshTokenValidityInDays As Integer
|
||||
overload: adas_core.Authentication.Interfaces.ITokenService.RefreshTokenValidityInDays*
|
||||
- uid: adas_core.Authentication.Interfaces.ITokenService.GetToken(System.String,System.Collections.Generic.List{System.Security.Claims.Claim})
|
||||
commentId: M:adas_core.Authentication.Interfaces.ITokenService.GetToken(System.String,System.Collections.Generic.List{System.Security.Claims.Claim})
|
||||
id: GetToken(System.String,System.Collections.Generic.List{System.Security.Claims.Claim})
|
||||
parent: adas_core.Authentication.Interfaces.ITokenService
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetToken(string, List<Claim>)
|
||||
nameWithType: ITokenService.GetToken(string, List<Claim>)
|
||||
fullName: adas_core.Authentication.Interfaces.ITokenService.GetToken(string, System.Collections.Generic.List<System.Security.Claims.Claim>)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: GetToken
|
||||
path: ../../adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
startLine: 15
|
||||
assemblies:
|
||||
- adas-core.Authentication
|
||||
namespace: adas_core.Authentication.Interfaces
|
||||
summary: >-
|
||||
Retrieves a <xref href="Microsoft.IdentityModel.Tokens.SecurityToken" data-throw-if-not-resolved="false"></xref> associated with the specified username and claims.
|
||||
|
||||
Returns <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> when no matching token is found.
|
||||
example: []
|
||||
syntax:
|
||||
content: SecurityToken? GetToken(string username, List<Claim> claims)
|
||||
parameters:
|
||||
- id: username
|
||||
type: System.String
|
||||
description: The username used to look up the security token.
|
||||
- id: claims
|
||||
type: System.Collections.Generic.List{System.Security.Claims.Claim}
|
||||
description: The list of claims associated with the token.
|
||||
return:
|
||||
type: Microsoft.IdentityModel.Tokens.SecurityToken
|
||||
description: A <xref href="Microsoft.IdentityModel.Tokens.SecurityToken" data-throw-if-not-resolved="false"></xref> if a matching token is found; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>.
|
||||
content.vb: Function GetToken(username As String, claims As List(Of Claim)) As SecurityToken
|
||||
overload: adas_core.Authentication.Interfaces.ITokenService.GetToken*
|
||||
nameWithType.vb: ITokenService.GetToken(String, List(Of Claim))
|
||||
fullName.vb: adas_core.Authentication.Interfaces.ITokenService.GetToken(String, System.Collections.Generic.List(Of System.Security.Claims.Claim))
|
||||
name.vb: GetToken(String, List(Of Claim))
|
||||
- uid: adas_core.Authentication.Interfaces.ITokenService.GetRefreshToken
|
||||
commentId: M:adas_core.Authentication.Interfaces.ITokenService.GetRefreshToken
|
||||
id: GetRefreshToken
|
||||
parent: adas_core.Authentication.Interfaces.ITokenService
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetRefreshToken()
|
||||
nameWithType: ITokenService.GetRefreshToken()
|
||||
fullName: adas_core.Authentication.Interfaces.ITokenService.GetRefreshToken()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: GetRefreshToken
|
||||
path: ../../adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
startLine: 21
|
||||
assemblies:
|
||||
- adas-core.Authentication
|
||||
namespace: adas_core.Authentication.Interfaces
|
||||
summary: Retrieves the current refresh token used to obtain new access tokens for authentication.
|
||||
example: []
|
||||
syntax:
|
||||
content: string GetRefreshToken()
|
||||
return:
|
||||
type: System.String
|
||||
description: The refresh token as a string.
|
||||
content.vb: Function GetRefreshToken() As String
|
||||
overload: adas_core.Authentication.Interfaces.ITokenService.GetRefreshToken*
|
||||
- uid: adas_core.Authentication.Interfaces.ITokenService.Serialize(Microsoft.IdentityModel.Tokens.SecurityToken)
|
||||
commentId: M:adas_core.Authentication.Interfaces.ITokenService.Serialize(Microsoft.IdentityModel.Tokens.SecurityToken)
|
||||
id: Serialize(Microsoft.IdentityModel.Tokens.SecurityToken)
|
||||
parent: adas_core.Authentication.Interfaces.ITokenService
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Serialize(SecurityToken)
|
||||
nameWithType: ITokenService.Serialize(SecurityToken)
|
||||
fullName: adas_core.Authentication.Interfaces.ITokenService.Serialize(Microsoft.IdentityModel.Tokens.SecurityToken)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: Serialize
|
||||
path: ../../adas-core.Authentication/Interfaces/ITokenService.cs
|
||||
startLine: 28
|
||||
assemblies:
|
||||
- adas-core.Authentication
|
||||
namespace: adas_core.Authentication.Interfaces
|
||||
summary: Serializes the specified security token into its string representation.
|
||||
example: []
|
||||
syntax:
|
||||
content: string Serialize(SecurityToken token)
|
||||
parameters:
|
||||
- id: token
|
||||
type: Microsoft.IdentityModel.Tokens.SecurityToken
|
||||
description: The security token to serialize.
|
||||
return:
|
||||
type: System.String
|
||||
description: A string containing the serialized form of the security token.
|
||||
content.vb: Function Serialize(token As SecurityToken) As String
|
||||
overload: adas_core.Authentication.Interfaces.ITokenService.Serialize*
|
||||
references:
|
||||
- uid: adas_core.Authentication.Interfaces
|
||||
commentId: N:adas_core.Authentication.Interfaces
|
||||
href: adas_core.html
|
||||
name: adas_core.Authentication.Interfaces
|
||||
nameWithType: adas_core.Authentication.Interfaces
|
||||
fullName: adas_core.Authentication.Interfaces
|
||||
spec.csharp:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Authentication
|
||||
name: Authentication
|
||||
href: adas_core.Authentication.html
|
||||
- name: .
|
||||
- uid: adas_core.Authentication.Interfaces
|
||||
name: Interfaces
|
||||
href: adas_core.Authentication.Interfaces.html
|
||||
spec.vb:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Authentication
|
||||
name: Authentication
|
||||
href: adas_core.Authentication.html
|
||||
- name: .
|
||||
- uid: adas_core.Authentication.Interfaces
|
||||
name: Interfaces
|
||||
href: adas_core.Authentication.Interfaces.html
|
||||
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
||||
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
parent: adas_core.Domain.Utils.NumberUtils
|
||||
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
name: IsNumber(object)
|
||||
nameWithType: NumberUtils.IsNumber(object)
|
||||
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
||||
nameWithType.vb: NumberUtils.IsNumber(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
||||
name.vb: IsNumber(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
name: IsNumber
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
name: IsNumber
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
||||
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
parent: adas_core.Domain.Utils.NumberUtils
|
||||
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
name: ToDouble(object)
|
||||
nameWithType: NumberUtils.ToDouble(object)
|
||||
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
||||
nameWithType.vb: NumberUtils.ToDouble(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
||||
name.vb: ToDouble(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
name: ToDouble
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
name: ToDouble
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
||||
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
parent: adas_core.Domain.Utils.ObjectUtils
|
||||
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
name: ToStr(object)
|
||||
nameWithType: ObjectUtils.ToStr(object)
|
||||
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
||||
nameWithType.vb: ObjectUtils.ToStr(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
||||
name.vb: ToStr(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
name: ToStr
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
name: ToStr
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
isExternal: true
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
name: IsNumber(object)
|
||||
nameWithType: NumberUtils.IsNumber(object)
|
||||
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
||||
nameWithType.vb: NumberUtils.IsNumber(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
||||
name.vb: IsNumber(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
name: IsNumber
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
name: IsNumber
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: adas_core.Domain.Utils.NumberUtils
|
||||
commentId: T:adas_core.Domain.Utils.NumberUtils
|
||||
parent: adas_core.Domain.Utils
|
||||
href: adas_core.Domain.Utils.NumberUtils.html
|
||||
name: NumberUtils
|
||||
nameWithType: NumberUtils
|
||||
fullName: adas_core.Domain.Utils.NumberUtils
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
isExternal: true
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
name: ToDouble(object)
|
||||
nameWithType: NumberUtils.ToDouble(object)
|
||||
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
||||
nameWithType.vb: NumberUtils.ToDouble(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
||||
name.vb: ToDouble(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
name: ToDouble
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
name: ToDouble
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
isExternal: true
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
name: ToStr(object)
|
||||
nameWithType: ObjectUtils.ToStr(object)
|
||||
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
||||
nameWithType.vb: ObjectUtils.ToStr(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
||||
name.vb: ToStr(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
name: ToStr
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
name: ToStr
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils
|
||||
commentId: T:adas_core.Domain.Utils.ObjectUtils
|
||||
parent: adas_core.Domain.Utils
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html
|
||||
name: ObjectUtils
|
||||
nameWithType: ObjectUtils
|
||||
fullName: adas_core.Domain.Utils.ObjectUtils
|
||||
- uid: adas_core.Domain.Utils
|
||||
commentId: N:adas_core.Domain.Utils
|
||||
href: adas_core.html
|
||||
name: adas_core.Domain.Utils
|
||||
nameWithType: adas_core.Domain.Utils
|
||||
fullName: adas_core.Domain.Utils
|
||||
spec.csharp:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain
|
||||
name: Domain
|
||||
href: adas_core.Domain.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain.Utils
|
||||
name: Utils
|
||||
href: adas_core.Domain.Utils.html
|
||||
spec.vb:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain
|
||||
name: Domain
|
||||
href: adas_core.Domain.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain.Utils
|
||||
name: Utils
|
||||
href: adas_core.Domain.Utils.html
|
||||
- uid: adas_core.Authentication.Interfaces.ITokenService.RefreshTokenValidityInDays*
|
||||
commentId: Overload:adas_core.Authentication.Interfaces.ITokenService.RefreshTokenValidityInDays
|
||||
href: adas_core.Authentication.Interfaces.ITokenService.html#adas_core_Authentication_Interfaces_ITokenService_RefreshTokenValidityInDays
|
||||
name: RefreshTokenValidityInDays
|
||||
nameWithType: ITokenService.RefreshTokenValidityInDays
|
||||
fullName: adas_core.Authentication.Interfaces.ITokenService.RefreshTokenValidityInDays
|
||||
- uid: System.Int32
|
||||
commentId: T:System.Int32
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
name: int
|
||||
nameWithType: int
|
||||
fullName: int
|
||||
nameWithType.vb: Integer
|
||||
fullName.vb: Integer
|
||||
name.vb: Integer
|
||||
- uid: System
|
||||
commentId: N:System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system
|
||||
name: System
|
||||
nameWithType: System
|
||||
fullName: System
|
||||
- uid: Microsoft.IdentityModel.Tokens.SecurityToken
|
||||
commentId: T:Microsoft.IdentityModel.Tokens.SecurityToken
|
||||
parent: Microsoft.IdentityModel.Tokens
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/microsoft.identitymodel.tokens.securitytoken
|
||||
name: SecurityToken
|
||||
nameWithType: SecurityToken
|
||||
fullName: Microsoft.IdentityModel.Tokens.SecurityToken
|
||||
- uid: adas_core.Authentication.Interfaces.ITokenService.GetToken*
|
||||
commentId: Overload:adas_core.Authentication.Interfaces.ITokenService.GetToken
|
||||
href: adas_core.Authentication.Interfaces.ITokenService.html#adas_core_Authentication_Interfaces_ITokenService_GetToken_System_String_System_Collections_Generic_List_System_Security_Claims_Claim__
|
||||
name: GetToken
|
||||
nameWithType: ITokenService.GetToken
|
||||
fullName: adas_core.Authentication.Interfaces.ITokenService.GetToken
|
||||
- uid: System.String
|
||||
commentId: T:System.String
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
name: string
|
||||
nameWithType: string
|
||||
fullName: string
|
||||
nameWithType.vb: String
|
||||
fullName.vb: String
|
||||
name.vb: String
|
||||
- uid: System.Collections.Generic.List{System.Security.Claims.Claim}
|
||||
commentId: T:System.Collections.Generic.List{System.Security.Claims.Claim}
|
||||
parent: System.Collections.Generic
|
||||
definition: System.Collections.Generic.List`1
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||||
name: List<Claim>
|
||||
nameWithType: List<Claim>
|
||||
fullName: System.Collections.Generic.List<System.Security.Claims.Claim>
|
||||
nameWithType.vb: List(Of Claim)
|
||||
fullName.vb: System.Collections.Generic.List(Of System.Security.Claims.Claim)
|
||||
name.vb: List(Of Claim)
|
||||
spec.csharp:
|
||||
- uid: System.Collections.Generic.List`1
|
||||
name: List
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||||
- name: <
|
||||
- uid: System.Security.Claims.Claim
|
||||
name: Claim
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.security.claims.claim
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: System.Collections.Generic.List`1
|
||||
name: List
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- uid: System.Security.Claims.Claim
|
||||
name: Claim
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.security.claims.claim
|
||||
- name: )
|
||||
- uid: Microsoft.IdentityModel.Tokens
|
||||
commentId: N:Microsoft.IdentityModel.Tokens
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/microsoft
|
||||
name: Microsoft.IdentityModel.Tokens
|
||||
nameWithType: Microsoft.IdentityModel.Tokens
|
||||
fullName: Microsoft.IdentityModel.Tokens
|
||||
spec.csharp:
|
||||
- uid: Microsoft
|
||||
name: Microsoft
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/microsoft
|
||||
- name: .
|
||||
- uid: Microsoft.IdentityModel
|
||||
name: IdentityModel
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/microsoft.identitymodel
|
||||
- name: .
|
||||
- uid: Microsoft.IdentityModel.Tokens
|
||||
name: Tokens
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/microsoft.identitymodel.tokens
|
||||
spec.vb:
|
||||
- uid: Microsoft
|
||||
name: Microsoft
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/microsoft
|
||||
- name: .
|
||||
- uid: Microsoft.IdentityModel
|
||||
name: IdentityModel
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/microsoft.identitymodel
|
||||
- name: .
|
||||
- uid: Microsoft.IdentityModel.Tokens
|
||||
name: Tokens
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/microsoft.identitymodel.tokens
|
||||
- uid: System.Collections.Generic.List`1
|
||||
commentId: T:System.Collections.Generic.List`1
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||||
name: List<T>
|
||||
nameWithType: List<T>
|
||||
fullName: System.Collections.Generic.List<T>
|
||||
nameWithType.vb: List(Of T)
|
||||
fullName.vb: System.Collections.Generic.List(Of T)
|
||||
name.vb: List(Of T)
|
||||
spec.csharp:
|
||||
- uid: System.Collections.Generic.List`1
|
||||
name: List
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||||
- name: <
|
||||
- name: T
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: System.Collections.Generic.List`1
|
||||
name: List
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- uid: System.Collections.Generic
|
||||
commentId: N:System.Collections.Generic
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system
|
||||
name: System.Collections.Generic
|
||||
nameWithType: System.Collections.Generic
|
||||
fullName: System.Collections.Generic
|
||||
spec.csharp:
|
||||
- uid: System
|
||||
name: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system
|
||||
- name: .
|
||||
- uid: System.Collections
|
||||
name: Collections
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections
|
||||
- name: .
|
||||
- uid: System.Collections.Generic
|
||||
name: Generic
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
||||
spec.vb:
|
||||
- uid: System
|
||||
name: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system
|
||||
- name: .
|
||||
- uid: System.Collections
|
||||
name: Collections
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections
|
||||
- name: .
|
||||
- uid: System.Collections.Generic
|
||||
name: Generic
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
||||
- uid: adas_core.Authentication.Interfaces.ITokenService.GetRefreshToken*
|
||||
commentId: Overload:adas_core.Authentication.Interfaces.ITokenService.GetRefreshToken
|
||||
href: adas_core.Authentication.Interfaces.ITokenService.html#adas_core_Authentication_Interfaces_ITokenService_GetRefreshToken
|
||||
name: GetRefreshToken
|
||||
nameWithType: ITokenService.GetRefreshToken
|
||||
fullName: adas_core.Authentication.Interfaces.ITokenService.GetRefreshToken
|
||||
- uid: adas_core.Authentication.Interfaces.ITokenService.Serialize*
|
||||
commentId: Overload:adas_core.Authentication.Interfaces.ITokenService.Serialize
|
||||
href: adas_core.Authentication.Interfaces.ITokenService.html#adas_core_Authentication_Interfaces_ITokenService_Serialize_Microsoft_IdentityModel_Tokens_SecurityToken_
|
||||
name: Serialize
|
||||
nameWithType: ITokenService.Serialize
|
||||
fullName: adas_core.Authentication.Interfaces.ITokenService.Serialize
|
||||
Reference in New Issue
Block a user