3 instantiations of MessagePackHubProtocolOptions
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Protocol\MessagePackHubProtocol.cs (1)
39: this(Options.Create(new MessagePackHubProtocolOptions()))
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (2)
RedisHubLifetimeManagerTests.cs (2)
33messagePackOptions = messagePackOptions ?? new MessagePackHubProtocolOptions(); 50var messagePackOptions = new MessagePackHubProtocolOptions();
8 references to MessagePackHubProtocolOptions
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (3)
MessagePackProtocolDependencyInjectionExtensions.cs (2)
36/// <param name="configure">A delegate that can be used to configure the <see cref="MessagePackHubProtocolOptions"/></param> 39public static TBuilder AddMessagePackProtocol<TBuilder>(this TBuilder builder, Action<MessagePackHubProtocolOptions> configure) where TBuilder : ISignalRBuilder
Protocol\MessagePackHubProtocol.cs (1)
46public MessagePackHubProtocol(IOptions<MessagePackHubProtocolOptions> options)
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (2)
RedisHubLifetimeManagerTests.cs (2)
30private RedisHubLifetimeManager<Hub> CreateLifetimeManager(TestRedisServer server, MessagePackHubProtocolOptions messagePackOptions = null, NewtonsoftJsonHubProtocolOptions jsonOptions = null) 50var messagePackOptions = new MessagePackHubProtocolOptions();
Microsoft.AspNetCore.SignalR.Tests (3)
HubConnectionHandlerTests.cs (3)
2457var msgPackOptions = serviceProvider.GetRequiredService<IOptions<MessagePackHubProtocolOptions>>(); 2495var msgPackOptions = serviceProvider.GetRequiredService<IOptions<MessagePackHubProtocolOptions>>(); 2519var msgPackOptions = serviceProvider.GetRequiredService<IOptions<MessagePackHubProtocolOptions>>();