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

789 lines
32 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.Interfaces.IClientMessageService
commentId: T:adas_core.Application.Services.Interfaces.IClientMessageService
id: IClientMessageService
parent: adas_core.Application.Services.Interfaces
children:
- adas_core.Application.Services.Interfaces.IClientMessageService.ProcessMessage(adas_core.Domain.Models.SignalR.Message,System.String)
- adas_core.Application.Services.Interfaces.IClientMessageService.SendAsync(System.String,System.Nullable{adas_core.Domain.Enums.OperationType},System.Object)
- adas_core.Application.Services.Interfaces.IClientMessageService.SendToAllAsync(adas_core.Domain.Enums.OperationType,System.Object)
- adas_core.Application.Services.Interfaces.IClientMessageService.SendUpdateMessageToBoxes(System.Collections.Generic.List{adas_core.Domain.Models.PatientLocation})
langs:
- csharp
- vb
name: IClientMessageService
nameWithType: IClientMessageService
fullName: adas_core.Application.Services.Interfaces.IClientMessageService
type: Interface
source:
remote:
path: adas-core.Application/Services/Interfaces/IClientMessageService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: IClientMessageService
path: ../../adas-core.Application/Services/Interfaces/IClientMessageService.cs
startLine: 6
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
syntax:
content: public interface IClientMessageService
content.vb: Public Interface IClientMessageService
derivedClasses:
- adas_core.WebSocket.WebSocketMessageService
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.Interfaces.IClientMessageService.SendAsync(System.String,System.Nullable{adas_core.Domain.Enums.OperationType},System.Object)
commentId: M:adas_core.Application.Services.Interfaces.IClientMessageService.SendAsync(System.String,System.Nullable{adas_core.Domain.Enums.OperationType},System.Object)
id: SendAsync(System.String,System.Nullable{adas_core.Domain.Enums.OperationType},System.Object)
parent: adas_core.Application.Services.Interfaces.IClientMessageService
langs:
- csharp
- vb
name: SendAsync(string, OperationType?, object?)
nameWithType: IClientMessageService.SendAsync(string, OperationType?, object?)
fullName: adas_core.Application.Services.Interfaces.IClientMessageService.SendAsync(string, adas_core.Domain.Enums.OperationType?, object?)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IClientMessageService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: SendAsync
path: ../../adas-core.Application/Services/Interfaces/IClientMessageService.cs
startLine: 15
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously sends a message to the specified receiver, optionally categorized by an operation type.
example: []
syntax:
content: Task SendAsync(string receiverId, OperationType? type, object? msg)
parameters:
- id: receiverId
type: System.String
description: The identifier of the intended message receiver.
- id: type
type: System.Nullable{adas_core.Domain.Enums.OperationType}
description: The optional operation type used to classify the message.
- id: msg
type: System.Object
description: The optional message payload to be sent.
return:
type: System.Threading.Tasks.Task
description: A task that represents the asynchronous send operation.
content.vb: Function SendAsync(receiverId As String, type As OperationType?, msg As Object) As Task
overload: adas_core.Application.Services.Interfaces.IClientMessageService.SendAsync*
nameWithType.vb: IClientMessageService.SendAsync(String, OperationType?, Object)
fullName.vb: adas_core.Application.Services.Interfaces.IClientMessageService.SendAsync(String, adas_core.Domain.Enums.OperationType?, Object)
name.vb: SendAsync(String, OperationType?, Object)
- uid: adas_core.Application.Services.Interfaces.IClientMessageService.SendToAllAsync(adas_core.Domain.Enums.OperationType,System.Object)
commentId: M:adas_core.Application.Services.Interfaces.IClientMessageService.SendToAllAsync(adas_core.Domain.Enums.OperationType,System.Object)
id: SendToAllAsync(adas_core.Domain.Enums.OperationType,System.Object)
parent: adas_core.Application.Services.Interfaces.IClientMessageService
langs:
- csharp
- vb
name: SendToAllAsync(OperationType, object?)
nameWithType: IClientMessageService.SendToAllAsync(OperationType, object?)
fullName: adas_core.Application.Services.Interfaces.IClientMessageService.SendToAllAsync(adas_core.Domain.Enums.OperationType, object?)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IClientMessageService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: SendToAllAsync
path: ../../adas-core.Application/Services/Interfaces/IClientMessageService.cs
startLine: 22
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously broadcasts a message of the specified operation type to all connected recipients.
example: []
syntax:
content: Task SendToAllAsync(OperationType type, object? msg)
parameters:
- id: type
type: adas_core.Domain.Enums.OperationType
description: The operation type that classifies the broadcast message.
- id: msg
type: System.Object
description: The message payload to send, or <code>null</code> when no payload is required.
return:
type: System.Threading.Tasks.Task
description: A task that represents the asynchronous broadcast operation.
content.vb: Function SendToAllAsync(type As OperationType, msg As Object) As Task
overload: adas_core.Application.Services.Interfaces.IClientMessageService.SendToAllAsync*
nameWithType.vb: IClientMessageService.SendToAllAsync(OperationType, Object)
fullName.vb: adas_core.Application.Services.Interfaces.IClientMessageService.SendToAllAsync(adas_core.Domain.Enums.OperationType, Object)
name.vb: SendToAllAsync(OperationType, Object)
- uid: adas_core.Application.Services.Interfaces.IClientMessageService.ProcessMessage(adas_core.Domain.Models.SignalR.Message,System.String)
commentId: M:adas_core.Application.Services.Interfaces.IClientMessageService.ProcessMessage(adas_core.Domain.Models.SignalR.Message,System.String)
id: ProcessMessage(adas_core.Domain.Models.SignalR.Message,System.String)
parent: adas_core.Application.Services.Interfaces.IClientMessageService
langs:
- csharp
- vb
name: ProcessMessage(Message, string)
nameWithType: IClientMessageService.ProcessMessage(Message, string)
fullName: adas_core.Application.Services.Interfaces.IClientMessageService.ProcessMessage(adas_core.Domain.Models.SignalR.Message, string)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IClientMessageService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: ProcessMessage
path: ../../adas-core.Application/Services/Interfaces/IClientMessageService.cs
startLine: 28
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Processes an incoming message within the context of the specified connection.
example: []
syntax:
content: Task ProcessMessage(Message msg, string contextConnectionId)
parameters:
- id: msg
type: adas_core.Domain.Models.SignalR.Message
description: The message to be processed.
- id: contextConnectionId
type: System.String
description: The identifier of the connection context associated with the message.
return:
type: System.Threading.Tasks.Task
content.vb: Function ProcessMessage(msg As Message, contextConnectionId As String) As Task
overload: adas_core.Application.Services.Interfaces.IClientMessageService.ProcessMessage*
nameWithType.vb: IClientMessageService.ProcessMessage(Message, String)
fullName.vb: adas_core.Application.Services.Interfaces.IClientMessageService.ProcessMessage(adas_core.Domain.Models.SignalR.Message, String)
name.vb: ProcessMessage(Message, String)
- uid: adas_core.Application.Services.Interfaces.IClientMessageService.SendUpdateMessageToBoxes(System.Collections.Generic.List{adas_core.Domain.Models.PatientLocation})
commentId: M:adas_core.Application.Services.Interfaces.IClientMessageService.SendUpdateMessageToBoxes(System.Collections.Generic.List{adas_core.Domain.Models.PatientLocation})
id: SendUpdateMessageToBoxes(System.Collections.Generic.List{adas_core.Domain.Models.PatientLocation})
parent: adas_core.Application.Services.Interfaces.IClientMessageService
langs:
- csharp
- vb
name: SendUpdateMessageToBoxes(List<PatientLocation>)
nameWithType: IClientMessageService.SendUpdateMessageToBoxes(List<PatientLocation>)
fullName: adas_core.Application.Services.Interfaces.IClientMessageService.SendUpdateMessageToBoxes(System.Collections.Generic.List<adas_core.Domain.Models.PatientLocation>)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IClientMessageService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: SendUpdateMessageToBoxes
path: ../../adas-core.Application/Services/Interfaces/IClientMessageService.cs
startLine: 33
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Sends an update message to the specified list of patient location boxes.
example: []
syntax:
content: void SendUpdateMessageToBoxes(List<PatientLocation> boxes)
parameters:
- id: boxes
type: System.Collections.Generic.List{adas_core.Domain.Models.PatientLocation}
description: The list of patient locations that will receive the update message.
content.vb: Sub SendUpdateMessageToBoxes(boxes As List(Of PatientLocation))
overload: adas_core.Application.Services.Interfaces.IClientMessageService.SendUpdateMessageToBoxes*
nameWithType.vb: IClientMessageService.SendUpdateMessageToBoxes(List(Of PatientLocation))
fullName.vb: adas_core.Application.Services.Interfaces.IClientMessageService.SendUpdateMessageToBoxes(System.Collections.Generic.List(Of adas_core.Domain.Models.PatientLocation))
name.vb: SendUpdateMessageToBoxes(List(Of PatientLocation))
references:
- 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.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.Application.Services.Interfaces.IClientMessageService.SendAsync*
commentId: Overload:adas_core.Application.Services.Interfaces.IClientMessageService.SendAsync
href: adas_core.Application.Services.Interfaces.IClientMessageService.html#adas_core_Application_Services_Interfaces_IClientMessageService_SendAsync_System_String_System_Nullable_adas_core_Domain_Enums_OperationType__System_Object_
name: SendAsync
nameWithType: IClientMessageService.SendAsync
fullName: adas_core.Application.Services.Interfaces.IClientMessageService.SendAsync
- 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.Nullable{adas_core.Domain.Enums.OperationType}
commentId: T:System.Nullable{adas_core.Domain.Enums.OperationType}
parent: System
definition: System.Nullable`1
href: adas_core.Domain.Enums.OperationType.html
name: OperationType?
nameWithType: OperationType?
fullName: adas_core.Domain.Enums.OperationType?
spec.csharp:
- uid: adas_core.Domain.Enums.OperationType
name: OperationType
href: adas_core.Domain.Enums.OperationType.html
- name: '?'
spec.vb:
- uid: adas_core.Domain.Enums.OperationType
name: OperationType
href: adas_core.Domain.Enums.OperationType.html
- name: '?'
- 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.Threading.Tasks.Task
commentId: T:System.Threading.Tasks.Task
parent: System.Threading.Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task
name: Task
nameWithType: Task
fullName: System.Threading.Tasks.Task
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: System.Nullable`1
commentId: T:System.Nullable`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
name: Nullable<T>
nameWithType: Nullable<T>
fullName: System.Nullable<T>
nameWithType.vb: Nullable(Of T)
fullName.vb: System.Nullable(Of T)
name.vb: Nullable(Of T)
spec.csharp:
- uid: System.Nullable`1
name: Nullable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Nullable`1
name: Nullable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
- name: (
- name: Of
- name: " "
- name: T
- 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.Interfaces.IClientMessageService.SendToAllAsync*
commentId: Overload:adas_core.Application.Services.Interfaces.IClientMessageService.SendToAllAsync
href: adas_core.Application.Services.Interfaces.IClientMessageService.html#adas_core_Application_Services_Interfaces_IClientMessageService_SendToAllAsync_adas_core_Domain_Enums_OperationType_System_Object_
name: SendToAllAsync
nameWithType: IClientMessageService.SendToAllAsync
fullName: adas_core.Application.Services.Interfaces.IClientMessageService.SendToAllAsync
- uid: adas_core.Domain.Enums.OperationType
commentId: T:adas_core.Domain.Enums.OperationType
parent: adas_core.Domain.Enums
href: adas_core.Domain.Enums.OperationType.html
name: OperationType
nameWithType: OperationType
fullName: adas_core.Domain.Enums.OperationType
- uid: adas_core.Domain.Enums
commentId: N:adas_core.Domain.Enums
href: adas_core.html
name: adas_core.Domain.Enums
nameWithType: adas_core.Domain.Enums
fullName: adas_core.Domain.Enums
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.Enums
name: Enums
href: adas_core.Domain.Enums.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.Enums
name: Enums
href: adas_core.Domain.Enums.html
- uid: adas_core.Application.Services.Interfaces.IClientMessageService.ProcessMessage*
commentId: Overload:adas_core.Application.Services.Interfaces.IClientMessageService.ProcessMessage
href: adas_core.Application.Services.Interfaces.IClientMessageService.html#adas_core_Application_Services_Interfaces_IClientMessageService_ProcessMessage_adas_core_Domain_Models_SignalR_Message_System_String_
name: ProcessMessage
nameWithType: IClientMessageService.ProcessMessage
fullName: adas_core.Application.Services.Interfaces.IClientMessageService.ProcessMessage
- uid: adas_core.Domain.Models.SignalR.Message
commentId: T:adas_core.Domain.Models.SignalR.Message
parent: adas_core.Domain.Models.SignalR
href: adas_core.Domain.Models.SignalR.Message.html
name: Message
nameWithType: Message
fullName: adas_core.Domain.Models.SignalR.Message
- uid: adas_core.Domain.Models.SignalR
commentId: N:adas_core.Domain.Models.SignalR
href: adas_core.html
name: adas_core.Domain.Models.SignalR
nameWithType: adas_core.Domain.Models.SignalR
fullName: adas_core.Domain.Models.SignalR
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.SignalR
name: SignalR
href: adas_core.Domain.Models.SignalR.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.SignalR
name: SignalR
href: adas_core.Domain.Models.SignalR.html
- uid: adas_core.Application.Services.Interfaces.IClientMessageService.SendUpdateMessageToBoxes*
commentId: Overload:adas_core.Application.Services.Interfaces.IClientMessageService.SendUpdateMessageToBoxes
href: adas_core.Application.Services.Interfaces.IClientMessageService.html#adas_core_Application_Services_Interfaces_IClientMessageService_SendUpdateMessageToBoxes_System_Collections_Generic_List_adas_core_Domain_Models_PatientLocation__
name: SendUpdateMessageToBoxes
nameWithType: IClientMessageService.SendUpdateMessageToBoxes
fullName: adas_core.Application.Services.Interfaces.IClientMessageService.SendUpdateMessageToBoxes
- uid: System.Collections.Generic.List{adas_core.Domain.Models.PatientLocation}
commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.PatientLocation}
parent: System.Collections.Generic
definition: System.Collections.Generic.List`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name: List<PatientLocation>
nameWithType: List<PatientLocation>
fullName: System.Collections.Generic.List<adas_core.Domain.Models.PatientLocation>
nameWithType.vb: List(Of PatientLocation)
fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.PatientLocation)
name.vb: List(Of PatientLocation)
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: adas_core.Domain.Models.PatientLocation
name: PatientLocation
href: adas_core.Domain.Models.PatientLocation.html
- 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: adas_core.Domain.Models.PatientLocation
name: PatientLocation
href: adas_core.Domain.Models.PatientLocation.html
- name: )
- 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