MessageBusExtensions.Publish Method

.NET Framework 4

Namespace:  Microsoft.AspNet.SignalR.Messaging
Assembly:  Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Publish ( _
    bus As IMessageBus, _
    source As String, _
    key As String, _
    value As String _
) As Task
'Usage
Dim bus As IMessageBus 
Dim source As String 
Dim key As String 
Dim value As String 
Dim returnValue As Task 

returnValue = bus.Publish(source, _
    key, value)
public static Task Publish(
    this IMessageBus bus,
    string source,
    string key,
    string value
)
[ExtensionAttribute]
public:
static Task^ Publish(
    IMessageBus^ bus, 
    String^ source, 
    String^ key, 
    String^ value
)
static member Publish : 
        bus:IMessageBus * 
        source:string * 
        key:string * 
        value:string -> Task
public static function Publish(
    bus : IMessageBus, 
    source : String, 
    key : String, 
    value : String
) : Task

Parameters

Return Value

Type: System.Threading.Tasks.Task

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IMessageBus. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.100) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.100).

See Also

Reference

MessageBusExtensions Class

Microsoft.AspNet.SignalR.Messaging Namespace