Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

MsgPackProtocolDependencyInjectionExtensions.AddMessagePackProtocol Method

Definition

Namespace:
Microsoft.Extensions.DependencyInjection
Assembly:
Microsoft.AspNetCore.SignalR.MsgPack.dll
Package:
Microsoft.AspNetCore.SignalR.MsgPack v1.0.0-preview2-final

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Name Description
AddMessagePackProtocol(ISignalRBuilder)

Enables the MsgPack protocol for SignalR.

AddMessagePackProtocol(ISignalRBuilder, Action<MessagePackHubProtocolOptions>)

Enables the MsgPack protocol for SignalR and allows options for the MsgPack protocol to be configured.

AddMessagePackProtocol(ISignalRBuilder)

Enables the MsgPack protocol for SignalR.

public static Microsoft.AspNetCore.SignalR.ISignalRBuilder AddMessagePackProtocol(this Microsoft.AspNetCore.SignalR.ISignalRBuilder builder);
static member AddMessagePackProtocol : Microsoft.AspNetCore.SignalR.ISignalRBuilder -> Microsoft.AspNetCore.SignalR.ISignalRBuilder
<Extension()>
Public Function AddMessagePackProtocol (builder As ISignalRBuilder) As ISignalRBuilder

Parameters

builder
ISignalRBuilder

The ISignalRBuilder representing the SignalR server to add MsgPack protocol support to.

Returns

The value of builder

Remarks

This has no effect if the MsgPack protocol has already been enabled.

Applies to

AddMessagePackProtocol(ISignalRBuilder, Action<MessagePackHubProtocolOptions>)

Enables the MsgPack protocol for SignalR and allows options for the MsgPack protocol to be configured.

public static Microsoft.AspNetCore.SignalR.ISignalRBuilder AddMessagePackProtocol(this Microsoft.AspNetCore.SignalR.ISignalRBuilder builder, Action<Microsoft.AspNetCore.SignalR.MessagePackHubProtocolOptions> configure);
static member AddMessagePackProtocol : Microsoft.AspNetCore.SignalR.ISignalRBuilder * Action<Microsoft.AspNetCore.SignalR.MessagePackHubProtocolOptions> -> Microsoft.AspNetCore.SignalR.ISignalRBuilder
<Extension()>
Public Function AddMessagePackProtocol (builder As ISignalRBuilder, configure As Action(Of MessagePackHubProtocolOptions)) As ISignalRBuilder

Parameters

builder
ISignalRBuilder

The ISignalRBuilder representing the SignalR server to add MsgPack protocol support to.

configure
Action<MessagePackHubProtocolOptions>

A delegate that can be used to configure the MessagePackHubProtocolOptions

Returns

The value of builder

Remarks

Any options configured here will be applied, even if the MsgPack protocol has already been registered with the server.

Applies to


Feedback

Was this page helpful?