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

1279 lines
51 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: adas_core.Infrastructure.Services.PublisherService
commentId: T:adas_core.Infrastructure.Services.PublisherService
id: PublisherService
parent: adas_core.Infrastructure.Services
children:
- adas_core.Infrastructure.Services.PublisherService.#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RabbitMqSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Infrastructure.Services.PublisherService})
- adas_core.Infrastructure.Services.PublisherService.CreateQueue(System.String)
- adas_core.Infrastructure.Services.PublisherService.SendMessage(System.Object,System.String)
- adas_core.Infrastructure.Services.PublisherService.SendMessage(System.String,System.String)
- adas_core.Infrastructure.Services.PublisherService.SendMessageError(System.Object,System.String)
langs:
- csharp
- vb
name: PublisherService
nameWithType: PublisherService
fullName: adas_core.Infrastructure.Services.PublisherService
type: Class
source:
remote:
path: adas-core.Infrastructure/Services/PublisherService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: PublisherService
path: ../../adas-core.Infrastructure/Services/PublisherService.cs
startLine: 14
assemblies:
- adas-core.Infrastructure
namespace: adas_core.Infrastructure.Services
summary: Represents a service that implements the <xref href="adas_core.Application.Services.Interfaces.IPublisherService" data-throw-if-not-resolved="false"></xref> contract, providing the concrete implementation of the publishing operations defined by the interface.
example: []
syntax:
content: 'public class PublisherService : IPublisherService'
content.vb: Public Class PublisherService Implements IPublisherService
inheritance:
- System.Object
implements:
- adas_core.Application.Services.Interfaces.IPublisherService
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.Infrastructure.Services.PublisherService.#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RabbitMqSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Infrastructure.Services.PublisherService})
commentId: M:adas_core.Infrastructure.Services.PublisherService.#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RabbitMqSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Infrastructure.Services.PublisherService})
id: '#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RabbitMqSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Infrastructure.Services.PublisherService})'
parent: adas_core.Infrastructure.Services.PublisherService
langs:
- csharp
- vb
name: PublisherService(IOptions<RabbitMqSettings>, ILogger<PublisherService>)
nameWithType: PublisherService.PublisherService(IOptions<RabbitMqSettings>, ILogger<PublisherService>)
fullName: adas_core.Infrastructure.Services.PublisherService.PublisherService(Microsoft.Extensions.Options.IOptions<adas_core.Domain.Models.AppSettings.RabbitMqSettings>, Microsoft.Extensions.Logging.ILogger<adas_core.Infrastructure.Services.PublisherService>)
type: Constructor
source:
remote:
path: adas-core.Infrastructure/Services/PublisherService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: .ctor
path: ../../adas-core.Infrastructure/Services/PublisherService.cs
startLine: 20
assemblies:
- adas-core.Infrastructure
namespace: adas_core.Infrastructure.Services
syntax:
content: public PublisherService(IOptions<RabbitMqSettings> rabbitMqSettings, ILogger<PublisherService> logger)
parameters:
- id: rabbitMqSettings
type: Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RabbitMqSettings}
- id: logger
type: Microsoft.Extensions.Logging.ILogger{adas_core.Infrastructure.Services.PublisherService}
content.vb: Public Sub New(rabbitMqSettings As IOptions(Of RabbitMqSettings), logger As ILogger(Of PublisherService))
overload: adas_core.Infrastructure.Services.PublisherService.#ctor*
nameWithType.vb: PublisherService.New(IOptions(Of RabbitMqSettings), ILogger(Of PublisherService))
fullName.vb: adas_core.Infrastructure.Services.PublisherService.New(Microsoft.Extensions.Options.IOptions(Of adas_core.Domain.Models.AppSettings.RabbitMqSettings), Microsoft.Extensions.Logging.ILogger(Of adas_core.Infrastructure.Services.PublisherService))
name.vb: New(IOptions(Of RabbitMqSettings), ILogger(Of PublisherService))
- uid: adas_core.Infrastructure.Services.PublisherService.CreateQueue(System.String)
commentId: M:adas_core.Infrastructure.Services.PublisherService.CreateQueue(System.String)
id: CreateQueue(System.String)
parent: adas_core.Infrastructure.Services.PublisherService
langs:
- csharp
- vb
name: CreateQueue(string)
nameWithType: PublisherService.CreateQueue(string)
fullName: adas_core.Infrastructure.Services.PublisherService.CreateQueue(string)
type: Method
source:
remote:
path: adas-core.Infrastructure/Services/PublisherService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: CreateQueue
path: ../../adas-core.Infrastructure/Services/PublisherService.cs
startLine: 50
assemblies:
- adas-core.Infrastructure
namespace: adas_core.Infrastructure.Services
summary: Creates a new queue with the specified name.
example: []
syntax:
content: public Task<bool> CreateQueue(string queueName)
parameters:
- id: queueName
type: System.String
description: The name of the queue to create.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that represents the asynchronous operation. The task result is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the queue was created successfully; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
content.vb: Public Function CreateQueue(queueName As String) As Task(Of Boolean)
overload: adas_core.Infrastructure.Services.PublisherService.CreateQueue*
implements:
- adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(System.String)
nameWithType.vb: PublisherService.CreateQueue(String)
fullName.vb: adas_core.Infrastructure.Services.PublisherService.CreateQueue(String)
name.vb: CreateQueue(String)
- uid: adas_core.Infrastructure.Services.PublisherService.SendMessage(System.String,System.String)
commentId: M:adas_core.Infrastructure.Services.PublisherService.SendMessage(System.String,System.String)
id: SendMessage(System.String,System.String)
parent: adas_core.Infrastructure.Services.PublisherService
langs:
- csharp
- vb
name: SendMessage(string, string)
nameWithType: PublisherService.SendMessage(string, string)
fullName: adas_core.Infrastructure.Services.PublisherService.SendMessage(string, string)
type: Method
source:
remote:
path: adas-core.Infrastructure/Services/PublisherService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: SendMessage
path: ../../adas-core.Infrastructure/Services/PublisherService.cs
startLine: 75
assemblies:
- adas-core.Infrastructure
namespace: adas_core.Infrastructure.Services
summary: Sends a message to the specified queue using the configured bus. If the bus is not initialized or an error occurs, the operation is logged and <code>false</code> is returned.
example: []
syntax:
content: public Task<bool> SendMessage(string msg, string queueName)
parameters:
- id: msg
type: System.String
description: The message payload to send to the queue.
- id: queueName
type: System.String
description: The name of the target queue to which the message will be sent.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: <code>true</code> if the message was sent successfully; otherwise, <code>false</code>.
content.vb: Public Function SendMessage(msg As String, queueName As String) As Task(Of Boolean)
overload: adas_core.Infrastructure.Services.PublisherService.SendMessage*
implements:
- adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.String,System.String)
nameWithType.vb: PublisherService.SendMessage(String, String)
fullName.vb: adas_core.Infrastructure.Services.PublisherService.SendMessage(String, String)
name.vb: SendMessage(String, String)
- uid: adas_core.Infrastructure.Services.PublisherService.SendMessage(System.Object,System.String)
commentId: M:adas_core.Infrastructure.Services.PublisherService.SendMessage(System.Object,System.String)
id: SendMessage(System.Object,System.String)
parent: adas_core.Infrastructure.Services.PublisherService
langs:
- csharp
- vb
name: SendMessage(object, string)
nameWithType: PublisherService.SendMessage(object, string)
fullName: adas_core.Infrastructure.Services.PublisherService.SendMessage(object, string)
type: Method
source:
remote:
path: adas-core.Infrastructure/Services/PublisherService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: SendMessage
path: ../../adas-core.Infrastructure/Services/PublisherService.cs
startLine: 106
assemblies:
- adas-core.Infrastructure
namespace: adas_core.Infrastructure.Services
summary: Serializes the specified object to JSON and asynchronously sends it to the named queue.
example: []
syntax:
content: public Task<bool> SendMessage(object obj, string queueName)
parameters:
- id: obj
type: System.Object
description: The object to serialize and send to the queue.
- id: queueName
type: System.String
description: The name of the destination queue.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that resolves to <code>true</code> if the message was sent successfully; otherwise, <code>false</code>.
content.vb: Public Function SendMessage(obj As Object, queueName As String) As Task(Of Boolean)
overload: adas_core.Infrastructure.Services.PublisherService.SendMessage*
implements:
- adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.Object,System.String)
nameWithType.vb: PublisherService.SendMessage(Object, String)
fullName.vb: adas_core.Infrastructure.Services.PublisherService.SendMessage(Object, String)
name.vb: SendMessage(Object, String)
- uid: adas_core.Infrastructure.Services.PublisherService.SendMessageError(System.Object,System.String)
commentId: M:adas_core.Infrastructure.Services.PublisherService.SendMessageError(System.Object,System.String)
id: SendMessageError(System.Object,System.String)
parent: adas_core.Infrastructure.Services.PublisherService
langs:
- csharp
- vb
name: SendMessageError(object, string)
nameWithType: PublisherService.SendMessageError(object, string)
fullName: adas_core.Infrastructure.Services.PublisherService.SendMessageError(object, string)
type: Method
source:
remote:
path: adas-core.Infrastructure/Services/PublisherService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: SendMessageError
path: ../../adas-core.Infrastructure/Services/PublisherService.cs
startLine: 118
assemblies:
- adas-core.Infrastructure
namespace: adas_core.Infrastructure.Services
summary: Sends an error message to the specified queue. Validates that the bus instance is available and that the supplied object is a <code>Message&lt;Error&gt;</code>; returns <code>false</code> when either validation fails or when the send operation throws an exception.
example: []
syntax:
content: public Task<bool> SendMessageError(object obj, string queueName)
parameters:
- id: obj
type: System.Object
description: The message object expected to be a <code>Message&lt;Error&gt;</code>. If it is not, the method returns <code>false</code> without sending anything.
- id: queueName
type: System.String
description: The name of the queue to which the error message body will be sent. The queue is created if it does not already exist.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A <xref href="System.Threading.Tasks.Task%601" data-throw-if-not-resolved="false"></xref> that resolves to <code>true</code> when the error message is successfully sent, and <code>false</code> when the bus is null, the object is not a <code>Message&lt;Error&gt;</code>, or an exception is raised while sending.
content.vb: Public Function SendMessageError(obj As Object, queueName As String) As Task(Of Boolean)
overload: adas_core.Infrastructure.Services.PublisherService.SendMessageError*
implements:
- adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(System.Object,System.String)
nameWithType.vb: PublisherService.SendMessageError(Object, String)
fullName.vb: adas_core.Infrastructure.Services.PublisherService.SendMessageError(Object, String)
name.vb: SendMessageError(Object, String)
references:
- uid: adas_core.Application.Services.Interfaces.IPublisherService
commentId: T:adas_core.Application.Services.Interfaces.IPublisherService
parent: adas_core.Application.Services.Interfaces
href: adas_core.Application.Services.Interfaces.IPublisherService.html
name: IPublisherService
nameWithType: IPublisherService
fullName: adas_core.Application.Services.Interfaces.IPublisherService
- uid: adas_core.Infrastructure.Services
commentId: N:adas_core.Infrastructure.Services
href: adas_core.html
name: adas_core.Infrastructure.Services
nameWithType: adas_core.Infrastructure.Services
fullName: adas_core.Infrastructure.Services
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Infrastructure
name: Infrastructure
href: adas_core.Infrastructure.html
- name: .
- uid: adas_core.Infrastructure.Services
name: Services
href: adas_core.Infrastructure.Services.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Infrastructure
name: Infrastructure
href: adas_core.Infrastructure.html
- name: .
- uid: adas_core.Infrastructure.Services
name: Services
href: adas_core.Infrastructure.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.Infrastructure.Services.PublisherService.#ctor*
commentId: Overload:adas_core.Infrastructure.Services.PublisherService.#ctor
href: adas_core.Infrastructure.Services.PublisherService.html#adas_core_Infrastructure_Services_PublisherService__ctor_Microsoft_Extensions_Options_IOptions_adas_core_Domain_Models_AppSettings_RabbitMqSettings__Microsoft_Extensions_Logging_ILogger_adas_core_Infrastructure_Services_PublisherService__
name: PublisherService
nameWithType: PublisherService.PublisherService
fullName: adas_core.Infrastructure.Services.PublisherService.PublisherService
nameWithType.vb: PublisherService.New
fullName.vb: adas_core.Infrastructure.Services.PublisherService.New
name.vb: New
- uid: Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RabbitMqSettings}
commentId: T:Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.RabbitMqSettings}
parent: Microsoft.Extensions.Options
definition: Microsoft.Extensions.Options.IOptions`1
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
name: IOptions<RabbitMqSettings>
nameWithType: IOptions<RabbitMqSettings>
fullName: Microsoft.Extensions.Options.IOptions<adas_core.Domain.Models.AppSettings.RabbitMqSettings>
nameWithType.vb: IOptions(Of RabbitMqSettings)
fullName.vb: Microsoft.Extensions.Options.IOptions(Of adas_core.Domain.Models.AppSettings.RabbitMqSettings)
name.vb: IOptions(Of RabbitMqSettings)
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.RabbitMqSettings
name: RabbitMqSettings
- 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.RabbitMqSettings
name: RabbitMqSettings
- name: )
- uid: Microsoft.Extensions.Logging.ILogger{adas_core.Infrastructure.Services.PublisherService}
commentId: T:Microsoft.Extensions.Logging.ILogger{adas_core.Infrastructure.Services.PublisherService}
parent: Microsoft.Extensions.Logging
definition: Microsoft.Extensions.Logging.ILogger`1
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
name: ILogger<PublisherService>
nameWithType: ILogger<PublisherService>
fullName: Microsoft.Extensions.Logging.ILogger<adas_core.Infrastructure.Services.PublisherService>
nameWithType.vb: ILogger(Of PublisherService)
fullName.vb: Microsoft.Extensions.Logging.ILogger(Of adas_core.Infrastructure.Services.PublisherService)
name.vb: ILogger(Of PublisherService)
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.Infrastructure.Services.PublisherService
name: PublisherService
href: adas_core.Infrastructure.Services.PublisherService.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.Infrastructure.Services.PublisherService
name: PublisherService
href: adas_core.Infrastructure.Services.PublisherService.html
- name: )
- 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.Infrastructure.Services.PublisherService.CreateQueue*
commentId: Overload:adas_core.Infrastructure.Services.PublisherService.CreateQueue
href: adas_core.Infrastructure.Services.PublisherService.html#adas_core_Infrastructure_Services_PublisherService_CreateQueue_System_String_
name: CreateQueue
nameWithType: PublisherService.CreateQueue
fullName: adas_core.Infrastructure.Services.PublisherService.CreateQueue
- uid: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(System.String)
commentId: M:adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(System.String)
parent: adas_core.Application.Services.Interfaces.IPublisherService
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: CreateQueue(string)
nameWithType: IPublisherService.CreateQueue(string)
fullName: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(string)
nameWithType.vb: IPublisherService.CreateQueue(String)
fullName.vb: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(String)
name.vb: CreateQueue(String)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(System.String)
name: CreateQueue
- 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.IPublisherService.CreateQueue(System.String)
name: CreateQueue
- 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: 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: 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.Infrastructure.Services.PublisherService.SendMessage*
commentId: Overload:adas_core.Infrastructure.Services.PublisherService.SendMessage
href: adas_core.Infrastructure.Services.PublisherService.html#adas_core_Infrastructure_Services_PublisherService_SendMessage_System_String_System_String_
name: SendMessage
nameWithType: PublisherService.SendMessage
fullName: adas_core.Infrastructure.Services.PublisherService.SendMessage
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.String,System.String)
commentId: M:adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.String,System.String)
parent: adas_core.Application.Services.Interfaces.IPublisherService
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: SendMessage(string, string)
nameWithType: IPublisherService.SendMessage(string, string)
fullName: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(string, string)
nameWithType.vb: IPublisherService.SendMessage(String, String)
fullName.vb: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(String, String)
name.vb: SendMessage(String, String)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.String,System.String)
name: SendMessage
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- 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.IPublisherService.SendMessage(System.String,System.String)
name: SendMessage
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.Object,System.String)
commentId: M:adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.Object,System.String)
parent: adas_core.Application.Services.Interfaces.IPublisherService
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: SendMessage(object, string)
nameWithType: IPublisherService.SendMessage(object, string)
fullName: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(object, string)
nameWithType.vb: IPublisherService.SendMessage(Object, String)
fullName.vb: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(Object, String)
name.vb: SendMessage(Object, String)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.Object,System.String)
name: SendMessage
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- 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.IPublisherService.SendMessage(System.Object,System.String)
name: SendMessage
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: adas_core.Infrastructure.Services.PublisherService.SendMessageError*
commentId: Overload:adas_core.Infrastructure.Services.PublisherService.SendMessageError
href: adas_core.Infrastructure.Services.PublisherService.html#adas_core_Infrastructure_Services_PublisherService_SendMessageError_System_Object_System_String_
name: SendMessageError
nameWithType: PublisherService.SendMessageError
fullName: adas_core.Infrastructure.Services.PublisherService.SendMessageError
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(System.Object,System.String)
commentId: M:adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(System.Object,System.String)
parent: adas_core.Application.Services.Interfaces.IPublisherService
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: SendMessageError(object, string)
nameWithType: IPublisherService.SendMessageError(object, string)
fullName: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(object, string)
nameWithType.vb: IPublisherService.SendMessageError(Object, String)
fullName.vb: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(Object, String)
name.vb: SendMessageError(Object, String)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(System.Object,System.String)
name: SendMessageError
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- 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.IPublisherService.SendMessageError(System.Object,System.String)
name: SendMessageError
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )