Files
adas-core/Documentation/docs/api/adas_core.Application.Services.AuthService.yml
T
2026-06-26 10:29:23 +02:00

1613 lines
64 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.AuthService
commentId: T:adas_core.Application.Services.AuthService
id: AuthService
parent: adas_core.Application.Services
children:
- adas_core.Application.Services.AuthService.#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RecordingSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.AuthService},adas_core.Application.Repositories.Interfaces.IAuthorityRepository)
- adas_core.Application.Services.AuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.AuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.AuthService.GetByUnitId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.AuthService.GetLoginResponse
- adas_core.Application.Services.AuthService.GetToken
- adas_core.Application.Services.AuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
langs:
- csharp
- vb
name: AuthService
nameWithType: AuthService
fullName: adas_core.Application.Services.AuthService
type: Class
source:
remote:
path: adas-core.Application/Services/AuthService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: AuthService
path: ../../adas-core.Application/Services/AuthService.cs
startLine: 18
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: >-
Provides an implementation of the <xref href="adas_core.Application.Services.Interfaces.IAuthService" data-throw-if-not-resolved="false"></xref> interface, offering
authentication-related services to consuming components.
example: []
syntax:
content: 'public class AuthService : IAuthService'
content.vb: Public Class AuthService Implements IAuthService
inheritance:
- System.Object
implements:
- adas_core.Application.Services.Interfaces.IAuthService
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
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.Application.Services.AuthService.#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RecordingSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.AuthService},adas_core.Application.Repositories.Interfaces.IAuthorityRepository)
commentId: M:adas_core.Application.Services.AuthService.#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RecordingSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.AuthService},adas_core.Application.Repositories.Interfaces.IAuthorityRepository)
id: '#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RecordingSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.AuthService},adas_core.Application.Repositories.Interfaces.IAuthorityRepository)'
parent: adas_core.Application.Services.AuthService
langs:
- csharp
- vb
name: AuthService(IOptions<RecordingSettings>, ILogger<AuthService>, IAuthorityRepository)
nameWithType: AuthService.AuthService(IOptions<RecordingSettings>, ILogger<AuthService>, IAuthorityRepository)
fullName: adas_core.Application.Services.AuthService.AuthService(Microsoft.Extensions.Options.IOptions<adas_core.Domain.Models.AppSettings.RecordingSettings>, Microsoft.Extensions.Logging.ILogger<adas_core.Application.Services.AuthService>, adas_core.Application.Repositories.Interfaces.IAuthorityRepository)
type: Constructor
source:
remote:
path: adas-core.Application/Services/AuthService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: .ctor
path: ../../adas-core.Application/Services/AuthService.cs
startLine: 26
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
syntax:
content: public AuthService(IOptions<RecordingSettings> recordingSettings, ILogger<AuthService> logger, IAuthorityRepository authorityRepository)
parameters:
- id: recordingSettings
type: Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RecordingSettings}
- id: logger
type: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.AuthService}
- id: authorityRepository
type: adas_core.Application.Repositories.Interfaces.IAuthorityRepository
content.vb: Public Sub New(recordingSettings As IOptions(Of RecordingSettings), logger As ILogger(Of AuthService), authorityRepository As IAuthorityRepository)
overload: adas_core.Application.Services.AuthService.#ctor*
nameWithType.vb: AuthService.New(IOptions(Of RecordingSettings), ILogger(Of AuthService), IAuthorityRepository)
fullName.vb: adas_core.Application.Services.AuthService.New(Microsoft.Extensions.Options.IOptions(Of adas_core.Domain.Models.AppSettings.RecordingSettings), Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.AuthService), adas_core.Application.Repositories.Interfaces.IAuthorityRepository)
name.vb: New(IOptions(Of RecordingSettings), ILogger(Of AuthService), IAuthorityRepository)
- uid: adas_core.Application.Services.AuthService.GetLoginResponse
commentId: M:adas_core.Application.Services.AuthService.GetLoginResponse
id: GetLoginResponse
parent: adas_core.Application.Services.AuthService
langs:
- csharp
- vb
name: GetLoginResponse()
nameWithType: AuthService.GetLoginResponse()
fullName: adas_core.Application.Services.AuthService.GetLoginResponse()
type: Method
source:
remote:
path: adas-core.Application/Services/AuthService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetLoginResponse
path: ../../adas-core.Application/Services/AuthService.cs
startLine: 43
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: Asynchronously obtains a login token from the recording API using the configured client credentials and caches it for reuse via <xref href="adas_core.Domain.Utils.AuthUtils" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public Task<LoginResponse?> GetLoginResponse()
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.LoginResponse}
description: A <xref href="adas_core.Domain.Models.Responses.LoginResponse" data-throw-if-not-resolved="false"></xref> containing the authentication token when the request succeeds and the response is valid; otherwise, <code>null</code> if the API URL is not configured, the request fails, the returned token is empty, or an exception is caught and logged.
content.vb: Public Function GetLoginResponse() As Task(Of LoginResponse)
overload: adas_core.Application.Services.AuthService.GetLoginResponse*
implements:
- adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse
- uid: adas_core.Application.Services.AuthService.GetToken
commentId: M:adas_core.Application.Services.AuthService.GetToken
id: GetToken
parent: adas_core.Application.Services.AuthService
langs:
- csharp
- vb
name: GetToken()
nameWithType: AuthService.GetToken()
fullName: adas_core.Application.Services.AuthService.GetToken()
type: Method
source:
remote:
path: adas-core.Application/Services/AuthService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetToken
path: ../../adas-core.Application/Services/AuthService.cs
startLine: 94
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: >-
Retrieves an authentication token, returning the cached token if it is not empty or expired.
Otherwise, attempts a fresh login and returns the new token, falling back to an empty string when no token is obtained.
example: []
syntax:
content: public Task<string> GetToken()
return:
type: System.Threading.Tasks.Task{System.String}
description: A task that resolves to the authentication token, or an empty string if the token could not be obtained.
content.vb: Public Function GetToken() As Task(Of String)
overload: adas_core.Application.Services.AuthService.GetToken*
implements:
- adas_core.Application.Services.Interfaces.IAuthService.GetToken
- uid: adas_core.Application.Services.AuthService.GetByUnitId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.AuthService.GetByUnitId(MongoDB.Bson.ObjectId)
id: GetByUnitId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.AuthService
langs:
- csharp
- vb
name: GetByUnitId(ObjectId)
nameWithType: AuthService.GetByUnitId(ObjectId)
fullName: adas_core.Application.Services.AuthService.GetByUnitId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/AuthService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByUnitId
path: ../../adas-core.Application/Services/AuthService.cs
startLine: 109
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: Retrieves a list of authorizations associated with the specified unit identifier by delegating to the authority repository.
example: []
syntax:
content: public Task<List<Authorization>> GetByUnitId(ObjectId unitId)
parameters:
- id: unitId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the unit whose authorizations are being retrieved.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}}
description: A task that represents the asynchronous operation, containing a list of <xref href="adas_core.Domain.Models.MongoModels.Authorization" data-throw-if-not-resolved="false"></xref> objects for the specified unit.
content.vb: Public Function GetByUnitId(unitId As ObjectId) As Task(Of List(Of Authorization))
overload: adas_core.Application.Services.AuthService.GetByUnitId*
implements:
- adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId)
- uid: adas_core.Application.Services.AuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.AuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
id: GetUserAuthorities(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.AuthService
langs:
- csharp
- vb
name: GetUserAuthorities(ObjectId)
nameWithType: AuthService.GetUserAuthorities(ObjectId)
fullName: adas_core.Application.Services.AuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/AuthService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetUserAuthorities
path: ../../adas-core.Application/Services/AuthService.cs
startLine: 119
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: Retrieves the list of authorizations associated with the specified user identifier.
example: []
syntax:
content: public Task<List<Authorization>> GetUserAuthorities(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The unique identifier of the user whose authorities are being requested.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}}
description: A task that represents the asynchronous operation, containing a list of <xref href="adas_core.Domain.Models.MongoModels.Authorization" data-throw-if-not-resolved="false"></xref> entries for the user.
content.vb: Public Function GetUserAuthorities(id As ObjectId) As Task(Of List(Of Authorization))
overload: adas_core.Application.Services.AuthService.GetUserAuthorities*
implements:
- adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
- uid: adas_core.Application.Services.AuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.AuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
id: DeleteByUnitId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.AuthService
langs:
- csharp
- vb
name: DeleteByUnitId(ObjectId)
nameWithType: AuthService.DeleteByUnitId(ObjectId)
fullName: adas_core.Application.Services.AuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/AuthService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: DeleteByUnitId
path: ../../adas-core.Application/Services/AuthService.cs
startLine: 129
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: Deletes all authorities associated with the specified unit identifier by delegating to the authority repository.
example: []
syntax:
content: public Task<bool> DeleteByUnitId(ObjectId unitId)
parameters:
- id: unitId
type: MongoDB.Bson.ObjectId
description: The identifier of the unit whose authorities are to be removed.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that represents the asynchronous operation. The task result is <code>true</code> if the deletion was successful; otherwise, <code>false</code>.
content.vb: Public Function DeleteByUnitId(unitId As ObjectId) As Task(Of Boolean)
overload: adas_core.Application.Services.AuthService.DeleteByUnitId*
implements:
- adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
- uid: adas_core.Application.Services.AuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.AuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
id: DeleteByDisplayId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.AuthService
langs:
- csharp
- vb
name: DeleteByDisplayId(ObjectId)
nameWithType: AuthService.DeleteByDisplayId(ObjectId)
fullName: adas_core.Application.Services.AuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/AuthService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: DeleteByDisplayId
path: ../../adas-core.Application/Services/AuthService.cs
startLine: 139
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: Deletes all authorities associated with the specified display identifier by delegating to the authority repository.
example: []
syntax:
content: public Task<bool> DeleteByDisplayId(ObjectId displayId)
parameters:
- id: displayId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the display whose related authorities should be removed.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that resolves to <code>true</code> if authorities were successfully deleted; otherwise, <code>false</code>.
content.vb: Public Function DeleteByDisplayId(displayId As ObjectId) As Task(Of Boolean)
overload: adas_core.Application.Services.AuthService.DeleteByDisplayId*
implements:
- adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
references:
- uid: adas_core.Application.Services.Interfaces.IAuthService
commentId: T:adas_core.Application.Services.Interfaces.IAuthService
parent: adas_core.Application.Services.Interfaces
href: adas_core.Application.Services.Interfaces.IAuthService.html
name: IAuthService
nameWithType: IAuthService
fullName: adas_core.Application.Services.Interfaces.IAuthService
- uid: adas_core.Application.Services
commentId: N:adas_core.Application.Services
href: adas_core.html
name: adas_core.Application.Services
nameWithType: adas_core.Application.Services
fullName: adas_core.Application.Services
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- 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.Application.Services.Interfaces
commentId: N:adas_core.Application.Services.Interfaces
href: adas_core.html
name: adas_core.Application.Services.Interfaces
nameWithType: adas_core.Application.Services.Interfaces
fullName: adas_core.Application.Services.Interfaces
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- 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.Application.Services.AuthService.#ctor*
commentId: Overload:adas_core.Application.Services.AuthService.#ctor
href: adas_core.Application.Services.AuthService.html#adas_core_Application_Services_AuthService__ctor_Microsoft_Extensions_Options_IOptions_adas_core_Domain_Models_AppSettings_RecordingSettings__Microsoft_Extensions_Logging_ILogger_adas_core_Application_Services_AuthService__adas_core_Application_Repositories_Interfaces_IAuthorityRepository_
name: AuthService
nameWithType: AuthService.AuthService
fullName: adas_core.Application.Services.AuthService.AuthService
nameWithType.vb: AuthService.New
fullName.vb: adas_core.Application.Services.AuthService.New
name.vb: New
- uid: Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RecordingSettings}
commentId: T:Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RecordingSettings}
parent: Microsoft.Extensions.Options
definition: Microsoft.Extensions.Options.IOptions`1
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
name: IOptions<RecordingSettings>
nameWithType: IOptions<RecordingSettings>
fullName: Microsoft.Extensions.Options.IOptions<adas_core.Domain.Models.AppSettings.RecordingSettings>
nameWithType.vb: IOptions(Of RecordingSettings)
fullName.vb: Microsoft.Extensions.Options.IOptions(Of adas_core.Domain.Models.AppSettings.RecordingSettings)
name.vb: IOptions(Of RecordingSettings)
spec.csharp:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: <
- uid: adas_core.Domain.Models.AppSettings.RecordingSettings
name: RecordingSettings
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.AppSettings.RecordingSettings
name: RecordingSettings
- name: )
- uid: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.AuthService}
commentId: T:Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.AuthService}
parent: Microsoft.Extensions.Logging
definition: Microsoft.Extensions.Logging.ILogger`1
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
name: ILogger<AuthService>
nameWithType: ILogger<AuthService>
fullName: Microsoft.Extensions.Logging.ILogger<adas_core.Application.Services.AuthService>
nameWithType.vb: ILogger(Of AuthService)
fullName.vb: Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.AuthService)
name.vb: ILogger(Of AuthService)
spec.csharp:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: <
- uid: adas_core.Application.Services.AuthService
name: AuthService
href: adas_core.Application.Services.AuthService.html
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Application.Services.AuthService
name: AuthService
href: adas_core.Application.Services.AuthService.html
- name: )
- uid: adas_core.Application.Repositories.Interfaces.IAuthorityRepository
commentId: T:adas_core.Application.Repositories.Interfaces.IAuthorityRepository
parent: adas_core.Application.Repositories.Interfaces
href: adas_core.Application.Repositories.Interfaces.IAuthorityRepository.html
name: IAuthorityRepository
nameWithType: IAuthorityRepository
fullName: adas_core.Application.Repositories.Interfaces.IAuthorityRepository
- uid: Microsoft.Extensions.Options.IOptions`1
commentId: T:Microsoft.Extensions.Options.IOptions`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
name: IOptions<TOptions>
nameWithType: IOptions<TOptions>
fullName: Microsoft.Extensions.Options.IOptions<TOptions>
nameWithType.vb: IOptions(Of TOptions)
fullName.vb: Microsoft.Extensions.Options.IOptions(Of TOptions)
name.vb: IOptions(Of TOptions)
spec.csharp:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: <
- name: TOptions
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: (
- name: Of
- name: " "
- name: TOptions
- name: )
- uid: Microsoft.Extensions.Options
commentId: N:Microsoft.Extensions.Options
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
name: Microsoft.Extensions.Options
nameWithType: Microsoft.Extensions.Options
fullName: Microsoft.Extensions.Options
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Options
name: Options
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Options
name: Options
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options
- uid: Microsoft.Extensions.Logging.ILogger`1
commentId: T:Microsoft.Extensions.Logging.ILogger`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
name: ILogger<TCategoryName>
nameWithType: ILogger<TCategoryName>
fullName: Microsoft.Extensions.Logging.ILogger<TCategoryName>
nameWithType.vb: ILogger(Of TCategoryName)
fullName.vb: Microsoft.Extensions.Logging.ILogger(Of TCategoryName)
name.vb: ILogger(Of TCategoryName)
spec.csharp:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: <
- name: TCategoryName
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: (
- name: Of
- name: " "
- name: TCategoryName
- name: )
- uid: Microsoft.Extensions.Logging
commentId: N:Microsoft.Extensions.Logging
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
name: Microsoft.Extensions.Logging
nameWithType: Microsoft.Extensions.Logging
fullName: Microsoft.Extensions.Logging
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Logging
name: Logging
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Logging
name: Logging
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging
- uid: adas_core.Application.Repositories.Interfaces
commentId: N:adas_core.Application.Repositories.Interfaces
href: adas_core.html
name: adas_core.Application.Repositories.Interfaces
nameWithType: adas_core.Application.Repositories.Interfaces
fullName: adas_core.Application.Repositories.Interfaces
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Repositories
name: Repositories
href: adas_core.Application.Repositories.html
- name: .
- uid: adas_core.Application.Repositories.Interfaces
name: Interfaces
href: adas_core.Application.Repositories.Interfaces.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Repositories
name: Repositories
href: adas_core.Application.Repositories.html
- name: .
- uid: adas_core.Application.Repositories.Interfaces
name: Interfaces
href: adas_core.Application.Repositories.Interfaces.html
- uid: adas_core.Domain.Utils.AuthUtils
commentId: T:adas_core.Domain.Utils.AuthUtils
parent: adas_core.Domain.Utils
href: adas_core.Domain.Utils.AuthUtils.html
name: AuthUtils
nameWithType: AuthUtils
fullName: adas_core.Domain.Utils.AuthUtils
- uid: adas_core.Domain.Models.Responses.LoginResponse
commentId: T:adas_core.Domain.Models.Responses.LoginResponse
parent: adas_core.Domain.Models.Responses
href: adas_core.Domain.Models.Responses.LoginResponse.html
name: LoginResponse
nameWithType: LoginResponse
fullName: adas_core.Domain.Models.Responses.LoginResponse
- uid: adas_core.Application.Services.AuthService.GetLoginResponse*
commentId: Overload:adas_core.Application.Services.AuthService.GetLoginResponse
href: adas_core.Application.Services.AuthService.html#adas_core_Application_Services_AuthService_GetLoginResponse
name: GetLoginResponse
nameWithType: AuthService.GetLoginResponse
fullName: adas_core.Application.Services.AuthService.GetLoginResponse
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse
commentId: M:adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse
parent: adas_core.Application.Services.Interfaces.IAuthService
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetLoginResponse
name: GetLoginResponse()
nameWithType: IAuthService.GetLoginResponse()
fullName: adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse()
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse
name: GetLoginResponse
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetLoginResponse
- name: (
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse
name: GetLoginResponse
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetLoginResponse
- name: (
- name: )
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.LoginResponse}
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.LoginResponse}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<LoginResponse>
nameWithType: Task<LoginResponse>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.Responses.LoginResponse>
nameWithType.vb: Task(Of LoginResponse)
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Responses.LoginResponse)
name.vb: Task(Of LoginResponse)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: adas_core.Domain.Models.Responses.LoginResponse
name: LoginResponse
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.Responses.LoginResponse
name: LoginResponse
- name: )
- uid: adas_core.Domain.Models.Responses
commentId: N:adas_core.Domain.Models.Responses
href: adas_core.html
name: adas_core.Domain.Models.Responses
nameWithType: adas_core.Domain.Models.Responses
fullName: adas_core.Domain.Models.Responses
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.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.Responses
name: Responses
href: adas_core.Domain.Models.Responses.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.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.Responses
name: Responses
href: adas_core.Domain.Models.Responses.html
- uid: System.Threading.Tasks.Task`1
commentId: T:System.Threading.Tasks.Task`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<TResult>
nameWithType: Task<TResult>
fullName: System.Threading.Tasks.Task<TResult>
nameWithType.vb: Task(Of TResult)
fullName.vb: System.Threading.Tasks.Task(Of TResult)
name.vb: Task(Of TResult)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- name: TResult
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- name: TResult
- name: )
- uid: System.Threading.Tasks
commentId: N:System.Threading.Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Threading.Tasks
nameWithType: System.Threading.Tasks
fullName: System.Threading.Tasks
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
- uid: adas_core.Application.Services.AuthService.GetToken*
commentId: Overload:adas_core.Application.Services.AuthService.GetToken
href: adas_core.Application.Services.AuthService.html#adas_core_Application_Services_AuthService_GetToken
name: GetToken
nameWithType: AuthService.GetToken
fullName: adas_core.Application.Services.AuthService.GetToken
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetToken
commentId: M:adas_core.Application.Services.Interfaces.IAuthService.GetToken
parent: adas_core.Application.Services.Interfaces.IAuthService
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetToken
name: GetToken()
nameWithType: IAuthService.GetToken()
fullName: adas_core.Application.Services.Interfaces.IAuthService.GetToken()
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetToken
name: GetToken
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetToken
- name: (
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetToken
name: GetToken
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetToken
- name: (
- name: )
- uid: System.Threading.Tasks.Task{System.String}
commentId: T:System.Threading.Tasks.Task{System.String}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<string>
nameWithType: Task<string>
fullName: System.Threading.Tasks.Task<string>
nameWithType.vb: Task(Of String)
fullName.vb: System.Threading.Tasks.Task(Of String)
name.vb: Task(Of String)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: adas_core.Domain.Models.MongoModels.Authorization
commentId: T:adas_core.Domain.Models.MongoModels.Authorization
parent: adas_core.Domain.Models.MongoModels
href: adas_core.Domain.Models.MongoModels.Authorization.html
name: Authorization
nameWithType: Authorization
fullName: adas_core.Domain.Models.MongoModels.Authorization
- uid: adas_core.Application.Services.AuthService.GetByUnitId*
commentId: Overload:adas_core.Application.Services.AuthService.GetByUnitId
href: adas_core.Application.Services.AuthService.html#adas_core_Application_Services_AuthService_GetByUnitId_MongoDB_Bson_ObjectId_
name: GetByUnitId
nameWithType: AuthService.GetByUnitId
fullName: adas_core.Application.Services.AuthService.GetByUnitId
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IAuthService
isExternal: true
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetByUnitId_MongoDB_Bson_ObjectId_
name: GetByUnitId(ObjectId)
nameWithType: IAuthService.GetByUnitId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId)
name: GetByUnitId
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetByUnitId_MongoDB_Bson_ObjectId_
- name: (
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId)
name: GetByUnitId
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetByUnitId_MongoDB_Bson_ObjectId_
- name: (
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: )
- uid: MongoDB.Bson.ObjectId
commentId: T:MongoDB.Bson.ObjectId
parent: MongoDB.Bson
isExternal: true
name: ObjectId
nameWithType: ObjectId
fullName: MongoDB.Bson.ObjectId
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<List<Authorization>>
nameWithType: Task<List<Authorization>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.Authorization>>
nameWithType.vb: Task(Of List(Of Authorization))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.Authorization))
name.vb: Task(Of List(Of Authorization))
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: <
- uid: adas_core.Domain.Models.MongoModels.Authorization
name: Authorization
- name: '>'
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- 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: adas_core.Domain.Models.MongoModels.Authorization
name: Authorization
- name: )
- name: )
- uid: adas_core.Domain.Models.MongoModels
commentId: N:adas_core.Domain.Models.MongoModels
href: adas_core.html
name: adas_core.Domain.Models.MongoModels
nameWithType: adas_core.Domain.Models.MongoModels
fullName: adas_core.Domain.Models.MongoModels
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.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.MongoModels
name: MongoModels
href: adas_core.Domain.Models.MongoModels.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.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.MongoModels
name: MongoModels
href: adas_core.Domain.Models.MongoModels.html
- uid: MongoDB.Bson
commentId: N:MongoDB.Bson
isExternal: true
name: MongoDB.Bson
nameWithType: MongoDB.Bson
fullName: MongoDB.Bson
spec.csharp:
- uid: MongoDB
name: MongoDB
isExternal: true
- name: .
- uid: MongoDB.Bson
name: Bson
isExternal: true
spec.vb:
- uid: MongoDB
name: MongoDB
isExternal: true
- name: .
- uid: MongoDB.Bson
name: Bson
isExternal: true
- uid: adas_core.Application.Services.AuthService.GetUserAuthorities*
commentId: Overload:adas_core.Application.Services.AuthService.GetUserAuthorities
href: adas_core.Application.Services.AuthService.html#adas_core_Application_Services_AuthService_GetUserAuthorities_MongoDB_Bson_ObjectId_
name: GetUserAuthorities
nameWithType: AuthService.GetUserAuthorities
fullName: adas_core.Application.Services.AuthService.GetUserAuthorities
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IAuthService
isExternal: true
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetUserAuthorities_MongoDB_Bson_ObjectId_
name: GetUserAuthorities(ObjectId)
nameWithType: IAuthService.GetUserAuthorities(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
name: GetUserAuthorities
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetUserAuthorities_MongoDB_Bson_ObjectId_
- name: (
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId)
name: GetUserAuthorities
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetUserAuthorities_MongoDB_Bson_ObjectId_
- name: (
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: )
- uid: adas_core.Application.Services.AuthService.DeleteByUnitId*
commentId: Overload:adas_core.Application.Services.AuthService.DeleteByUnitId
href: adas_core.Application.Services.AuthService.html#adas_core_Application_Services_AuthService_DeleteByUnitId_MongoDB_Bson_ObjectId_
name: DeleteByUnitId
nameWithType: AuthService.DeleteByUnitId
fullName: adas_core.Application.Services.AuthService.DeleteByUnitId
- uid: adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IAuthService
isExternal: true
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_DeleteByUnitId_MongoDB_Bson_ObjectId_
name: DeleteByUnitId(ObjectId)
nameWithType: IAuthService.DeleteByUnitId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
name: DeleteByUnitId
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_DeleteByUnitId_MongoDB_Bson_ObjectId_
- name: (
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId)
name: DeleteByUnitId
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_DeleteByUnitId_MongoDB_Bson_ObjectId_
- name: (
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: )
- uid: System.Threading.Tasks.Task{System.Boolean}
commentId: T:System.Threading.Tasks.Task{System.Boolean}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<bool>
nameWithType: Task<bool>
fullName: System.Threading.Tasks.Task<bool>
nameWithType.vb: Task(Of Boolean)
fullName.vb: System.Threading.Tasks.Task(Of Boolean)
name.vb: Task(Of Boolean)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: adas_core.Application.Services.AuthService.DeleteByDisplayId*
commentId: Overload:adas_core.Application.Services.AuthService.DeleteByDisplayId
href: adas_core.Application.Services.AuthService.html#adas_core_Application_Services_AuthService_DeleteByDisplayId_MongoDB_Bson_ObjectId_
name: DeleteByDisplayId
nameWithType: AuthService.DeleteByDisplayId
fullName: adas_core.Application.Services.AuthService.DeleteByDisplayId
- uid: adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IAuthService
isExternal: true
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_DeleteByDisplayId_MongoDB_Bson_ObjectId_
name: DeleteByDisplayId(ObjectId)
nameWithType: IAuthService.DeleteByDisplayId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
name: DeleteByDisplayId
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_DeleteByDisplayId_MongoDB_Bson_ObjectId_
- name: (
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId)
name: DeleteByDisplayId
href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_DeleteByDisplayId_MongoDB_Bson_ObjectId_
- name: (
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: )