1136 lines
45 KiB
YAML
1136 lines
45 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: adas_core.Application.Services.SubscribersService
|
|
commentId: T:adas_core.Application.Services.SubscribersService
|
|
id: SubscribersService
|
|
parent: adas_core.Application.Services
|
|
children:
|
|
- adas_core.Application.Services.SubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
- adas_core.Application.Services.SubscribersService.GetById(System.String)
|
|
- adas_core.Application.Services.SubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.SubscribersService.GetSubscribers
|
|
- adas_core.Application.Services.SubscribersService.RemoveConnectionById(System.String)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: SubscribersService
|
|
nameWithType: SubscribersService
|
|
fullName: adas_core.Application.Services.SubscribersService
|
|
type: Class
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/SubscribersService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: SubscribersService
|
|
path: ../../adas-core.Application/Services/SubscribersService.cs
|
|
startLine: 10
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Provides operations for managing subscribers by implementing the <xref href="adas_core.Application.Services.Interfaces.ISubscribersService" data-throw-if-not-resolved="false"></xref> contract.
|
|
|
|
Acts as the concrete service layer responsible for subscriber-related functionality.
|
|
example: []
|
|
syntax:
|
|
content: 'public class SubscribersService : ISubscribersService'
|
|
content.vb: Public Class SubscribersService Implements ISubscribersService
|
|
inheritance:
|
|
- System.Object
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ISubscribersService
|
|
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.SubscribersService.GetSubscribers
|
|
commentId: M:adas_core.Application.Services.SubscribersService.GetSubscribers
|
|
id: GetSubscribers
|
|
parent: adas_core.Application.Services.SubscribersService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetSubscribers()
|
|
nameWithType: SubscribersService.GetSubscribers()
|
|
fullName: adas_core.Application.Services.SubscribersService.GetSubscribers()
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/SubscribersService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetSubscribers
|
|
path: ../../adas-core.Application/Services/SubscribersService.cs
|
|
startLine: 19
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Retrieves a thread-safe snapshot of the current list of WebSocket subscribers.
|
|
example: []
|
|
syntax:
|
|
content: public List<WsSubscriber> GetSubscribers()
|
|
return:
|
|
type: System.Collections.Generic.List{adas_core.Application.Subscriptions.WsSubscriber}
|
|
description: A new <xref href="System.Collections.Generic.List%601" data-throw-if-not-resolved="false"></xref> containing a copy of the current subscribers.
|
|
content.vb: Public Function GetSubscribers() As List(Of WsSubscriber)
|
|
overload: adas_core.Application.Services.SubscribersService.GetSubscribers*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ISubscribersService.GetSubscribers
|
|
- uid: adas_core.Application.Services.SubscribersService.GetById(System.String)
|
|
commentId: M:adas_core.Application.Services.SubscribersService.GetById(System.String)
|
|
id: GetById(System.String)
|
|
parent: adas_core.Application.Services.SubscribersService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetById(string)
|
|
nameWithType: SubscribersService.GetById(string)
|
|
fullName: adas_core.Application.Services.SubscribersService.GetById(string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/SubscribersService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetById
|
|
path: ../../adas-core.Application/Services/SubscribersService.cs
|
|
startLine: 34
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Retrieves a WebSocket subscriber by its connection identifier, returning null if no matching subscriber is found.
|
|
|
|
Thread-safe access to the subscribers collection is ensured via locking.
|
|
example: []
|
|
syntax:
|
|
content: public WsSubscriber? GetById(string contextConnectionId)
|
|
parameters:
|
|
- id: contextConnectionId
|
|
type: System.String
|
|
description: The unique connection identifier of the subscriber to look up.
|
|
return:
|
|
type: adas_core.Application.Subscriptions.WsSubscriber
|
|
description: The matching <xref href="adas_core.Application.Subscriptions.WsSubscriber" data-throw-if-not-resolved="false"></xref> if found; otherwise, null.
|
|
content.vb: Public Function GetById(contextConnectionId As String) As WsSubscriber
|
|
overload: adas_core.Application.Services.SubscribersService.GetById*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ISubscribersService.GetById(System.String)
|
|
nameWithType.vb: SubscribersService.GetById(String)
|
|
fullName.vb: adas_core.Application.Services.SubscribersService.GetById(String)
|
|
name.vb: GetById(String)
|
|
- uid: adas_core.Application.Services.SubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.SubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
id: GetByPocId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.SubscribersService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetByPocId(ObjectId)
|
|
nameWithType: SubscribersService.GetByPocId(ObjectId)
|
|
fullName: adas_core.Application.Services.SubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/SubscribersService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetByPocId
|
|
path: ../../adas-core.Application/Services/SubscribersService.cs
|
|
startLine: 48
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Retrieves all subscribers whose associated location identifiers include the specified point-of-contact identifier.
|
|
|
|
Ensures thread-safe access to the underlying subscriber collection during the read operation.
|
|
example: []
|
|
syntax:
|
|
content: public List<WsSubscriber> GetByPocId(ObjectId pocId)
|
|
parameters:
|
|
- id: pocId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The point-of-contact identifier used to match subscribers by their location list.
|
|
return:
|
|
type: System.Collections.Generic.List{adas_core.Application.Subscriptions.WsSubscriber}
|
|
description: A list of <xref href="adas_core.Application.Subscriptions.WsSubscriber" data-throw-if-not-resolved="false"></xref> instances that have <code class="paramref">pocId</code> in their location identifiers; returns an empty list when no matches are found.
|
|
content.vb: Public Function GetByPocId(pocId As ObjectId) As List(Of WsSubscriber)
|
|
overload: adas_core.Application.Services.SubscribersService.GetByPocId*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ISubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
- uid: adas_core.Application.Services.SubscribersService.RemoveConnectionById(System.String)
|
|
commentId: M:adas_core.Application.Services.SubscribersService.RemoveConnectionById(System.String)
|
|
id: RemoveConnectionById(System.String)
|
|
parent: adas_core.Application.Services.SubscribersService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: RemoveConnectionById(string)
|
|
nameWithType: SubscribersService.RemoveConnectionById(string)
|
|
fullName: adas_core.Application.Services.SubscribersService.RemoveConnectionById(string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/SubscribersService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: RemoveConnectionById
|
|
path: ../../adas-core.Application/Services/SubscribersService.cs
|
|
startLine: 61
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Removes all subscriber connections matching the specified connection identifier in a thread-safe manner.
|
|
example: []
|
|
syntax:
|
|
content: public int RemoveConnectionById(string contextConnectionId)
|
|
parameters:
|
|
- id: contextConnectionId
|
|
type: System.String
|
|
description: The unique identifier of the connection to remove.
|
|
return:
|
|
type: System.Int32
|
|
description: The number of connections that were removed from the subscribers list.
|
|
content.vb: Public Function RemoveConnectionById(contextConnectionId As String) As Integer
|
|
overload: adas_core.Application.Services.SubscribersService.RemoveConnectionById*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ISubscribersService.RemoveConnectionById(System.String)
|
|
nameWithType.vb: SubscribersService.RemoveConnectionById(String)
|
|
fullName.vb: adas_core.Application.Services.SubscribersService.RemoveConnectionById(String)
|
|
name.vb: RemoveConnectionById(String)
|
|
- uid: adas_core.Application.Services.SubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
commentId: M:adas_core.Application.Services.SubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
id: AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
parent: adas_core.Application.Services.SubscribersService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: AddSubscriber(WsSubscriber)
|
|
nameWithType: SubscribersService.AddSubscriber(WsSubscriber)
|
|
fullName: adas_core.Application.Services.SubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/SubscribersService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: AddSubscriber
|
|
path: ../../adas-core.Application/Services/SubscribersService.cs
|
|
startLine: 74
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Adds a WebSocket subscriber to the internal subscribers collection in a thread-safe manner.
|
|
|
|
Ensures that concurrent calls to add subscribers are serialized to prevent race conditions.
|
|
example: []
|
|
syntax:
|
|
content: public void AddSubscriber(WsSubscriber subscriber)
|
|
parameters:
|
|
- id: subscriber
|
|
type: adas_core.Application.Subscriptions.WsSubscriber
|
|
description: The WebSocket subscriber to add to the collection.
|
|
content.vb: Public Sub AddSubscriber(subscriber As WsSubscriber)
|
|
overload: adas_core.Application.Services.SubscribersService.AddSubscriber*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ISubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
references:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
commentId: T:adas_core.Application.Services.Interfaces.ISubscribersService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html
|
|
name: ISubscribersService
|
|
nameWithType: ISubscribersService
|
|
fullName: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
- 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: 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: adas_core.Application.Services.SubscribersService.GetSubscribers*
|
|
commentId: Overload:adas_core.Application.Services.SubscribersService.GetSubscribers
|
|
href: adas_core.Application.Services.SubscribersService.html#adas_core_Application_Services_SubscribersService_GetSubscribers
|
|
name: GetSubscribers
|
|
nameWithType: SubscribersService.GetSubscribers
|
|
fullName: adas_core.Application.Services.SubscribersService.GetSubscribers
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.GetSubscribers
|
|
commentId: M:adas_core.Application.Services.Interfaces.ISubscribersService.GetSubscribers
|
|
parent: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_GetSubscribers
|
|
name: GetSubscribers()
|
|
nameWithType: ISubscribersService.GetSubscribers()
|
|
fullName: adas_core.Application.Services.Interfaces.ISubscribersService.GetSubscribers()
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.GetSubscribers
|
|
name: GetSubscribers
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_GetSubscribers
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.GetSubscribers
|
|
name: GetSubscribers
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_GetSubscribers
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Collections.Generic.List{adas_core.Application.Subscriptions.WsSubscriber}
|
|
commentId: T:System.Collections.Generic.List{adas_core.Application.Subscriptions.WsSubscriber}
|
|
parent: System.Collections.Generic
|
|
definition: System.Collections.Generic.List`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
name: List<WsSubscriber>
|
|
nameWithType: List<WsSubscriber>
|
|
fullName: System.Collections.Generic.List<adas_core.Application.Subscriptions.WsSubscriber>
|
|
nameWithType.vb: List(Of WsSubscriber)
|
|
fullName.vb: System.Collections.Generic.List(Of adas_core.Application.Subscriptions.WsSubscriber)
|
|
name.vb: List(Of WsSubscriber)
|
|
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.Application.Subscriptions.WsSubscriber
|
|
name: WsSubscriber
|
|
href: adas_core.Application.Subscriptions.WsSubscriber.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.Application.Subscriptions.WsSubscriber
|
|
name: WsSubscriber
|
|
href: adas_core.Application.Subscriptions.WsSubscriber.html
|
|
- name: )
|
|
- uid: System.Collections.Generic
|
|
commentId: N:System.Collections.Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System.Collections.Generic
|
|
nameWithType: System.Collections.Generic
|
|
fullName: System.Collections.Generic
|
|
spec.csharp:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
spec.vb:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
- uid: adas_core.Application.Subscriptions.WsSubscriber
|
|
commentId: T:adas_core.Application.Subscriptions.WsSubscriber
|
|
parent: adas_core.Application.Subscriptions
|
|
href: adas_core.Application.Subscriptions.WsSubscriber.html
|
|
name: WsSubscriber
|
|
nameWithType: WsSubscriber
|
|
fullName: adas_core.Application.Subscriptions.WsSubscriber
|
|
- uid: adas_core.Application.Services.SubscribersService.GetById*
|
|
commentId: Overload:adas_core.Application.Services.SubscribersService.GetById
|
|
href: adas_core.Application.Services.SubscribersService.html#adas_core_Application_Services_SubscribersService_GetById_System_String_
|
|
name: GetById
|
|
nameWithType: SubscribersService.GetById
|
|
fullName: adas_core.Application.Services.SubscribersService.GetById
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.GetById(System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ISubscribersService.GetById(System.String)
|
|
parent: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_GetById_System_String_
|
|
name: GetById(string)
|
|
nameWithType: ISubscribersService.GetById(string)
|
|
fullName: adas_core.Application.Services.Interfaces.ISubscribersService.GetById(string)
|
|
nameWithType.vb: ISubscribersService.GetById(String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.ISubscribersService.GetById(String)
|
|
name.vb: GetById(String)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.GetById(System.String)
|
|
name: GetById
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_GetById_System_String_
|
|
- name: (
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.GetById(System.String)
|
|
name: GetById
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_GetById_System_String_
|
|
- name: (
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
- 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: adas_core.Application.Subscriptions
|
|
commentId: N:adas_core.Application.Subscriptions
|
|
href: adas_core.html
|
|
name: adas_core.Application.Subscriptions
|
|
nameWithType: adas_core.Application.Subscriptions
|
|
fullName: adas_core.Application.Subscriptions
|
|
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.Subscriptions
|
|
name: Subscriptions
|
|
href: adas_core.Application.Subscriptions.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.Subscriptions
|
|
name: Subscriptions
|
|
href: adas_core.Application.Subscriptions.html
|
|
- uid: adas_core.Application.Services.SubscribersService.GetByPocId*
|
|
commentId: Overload:adas_core.Application.Services.SubscribersService.GetByPocId
|
|
href: adas_core.Application.Services.SubscribersService.html#adas_core_Application_Services_SubscribersService_GetByPocId_MongoDB_Bson_ObjectId_
|
|
name: GetByPocId
|
|
nameWithType: SubscribersService.GetByPocId
|
|
fullName: adas_core.Application.Services.SubscribersService.GetByPocId
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ISubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_GetByPocId_MongoDB_Bson_ObjectId_
|
|
name: GetByPocId(ObjectId)
|
|
nameWithType: ISubscribersService.GetByPocId(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ISubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
name: GetByPocId
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_GetByPocId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.GetByPocId(MongoDB.Bson.ObjectId)
|
|
name: GetByPocId
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_GetByPocId_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: 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.SubscribersService.RemoveConnectionById*
|
|
commentId: Overload:adas_core.Application.Services.SubscribersService.RemoveConnectionById
|
|
href: adas_core.Application.Services.SubscribersService.html#adas_core_Application_Services_SubscribersService_RemoveConnectionById_System_String_
|
|
name: RemoveConnectionById
|
|
nameWithType: SubscribersService.RemoveConnectionById
|
|
fullName: adas_core.Application.Services.SubscribersService.RemoveConnectionById
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.RemoveConnectionById(System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ISubscribersService.RemoveConnectionById(System.String)
|
|
parent: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_RemoveConnectionById_System_String_
|
|
name: RemoveConnectionById(string)
|
|
nameWithType: ISubscribersService.RemoveConnectionById(string)
|
|
fullName: adas_core.Application.Services.Interfaces.ISubscribersService.RemoveConnectionById(string)
|
|
nameWithType.vb: ISubscribersService.RemoveConnectionById(String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.ISubscribersService.RemoveConnectionById(String)
|
|
name.vb: RemoveConnectionById(String)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.RemoveConnectionById(System.String)
|
|
name: RemoveConnectionById
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_RemoveConnectionById_System_String_
|
|
- name: (
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.RemoveConnectionById(System.String)
|
|
name: RemoveConnectionById
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_RemoveConnectionById_System_String_
|
|
- name: (
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
- uid: System.Int32
|
|
commentId: T:System.Int32
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.int32
|
|
name: int
|
|
nameWithType: int
|
|
fullName: int
|
|
nameWithType.vb: Integer
|
|
fullName.vb: Integer
|
|
name.vb: Integer
|
|
- uid: adas_core.Application.Services.SubscribersService.AddSubscriber*
|
|
commentId: Overload:adas_core.Application.Services.SubscribersService.AddSubscriber
|
|
href: adas_core.Application.Services.SubscribersService.html#adas_core_Application_Services_SubscribersService_AddSubscriber_adas_core_Application_Subscriptions_WsSubscriber_
|
|
name: AddSubscriber
|
|
nameWithType: SubscribersService.AddSubscriber
|
|
fullName: adas_core.Application.Services.SubscribersService.AddSubscriber
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ISubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
parent: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_AddSubscriber_adas_core_Application_Subscriptions_WsSubscriber_
|
|
name: AddSubscriber(WsSubscriber)
|
|
nameWithType: ISubscribersService.AddSubscriber(WsSubscriber)
|
|
fullName: adas_core.Application.Services.Interfaces.ISubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
name: AddSubscriber
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_AddSubscriber_adas_core_Application_Subscriptions_WsSubscriber_
|
|
- name: (
|
|
- uid: adas_core.Application.Subscriptions.WsSubscriber
|
|
name: WsSubscriber
|
|
href: adas_core.Application.Subscriptions.WsSubscriber.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService.AddSubscriber(adas_core.Application.Subscriptions.WsSubscriber)
|
|
name: AddSubscriber
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html#adas_core_Application_Services_Interfaces_ISubscribersService_AddSubscriber_adas_core_Application_Subscriptions_WsSubscriber_
|
|
- name: (
|
|
- uid: adas_core.Application.Subscriptions.WsSubscriber
|
|
name: WsSubscriber
|
|
href: adas_core.Application.Subscriptions.WsSubscriber.html
|
|
- name: )
|