2 interfaces inheriting from ISignalRBuilder
Microsoft.AspNetCore.SignalR.Client.Core (1)
IHubConnectionBuilder.cs (1)
9public interface IHubConnectionBuilder : ISignalRBuilder
Microsoft.AspNetCore.SignalR.Core (1)
ISignalRServerBuilder.cs (1)
9public interface ISignalRServerBuilder : ISignalRBuilder
15 references to ISignalRBuilder
Microsoft.AspNetCore.SignalR.Protocols.Json (5)
JsonProtocolDependencyInjectionExtensions.cs (5)
12/// Extension methods for <see cref="ISignalRBuilder"/>. 22/// <param name="builder">The <see cref="ISignalRBuilder"/> representing the SignalR server to add JSON protocol support to.</param> 24public static TBuilder AddJsonProtocol<TBuilder>(this TBuilder builder) where TBuilder : ISignalRBuilder 33/// <param name="builder">The <see cref="ISignalRBuilder"/> representing the SignalR server to add JSON protocol support to.</param> 36public static TBuilder AddJsonProtocol<TBuilder>(this TBuilder builder, Action<JsonHubProtocolOptions> configure) where TBuilder : ISignalRBuilder
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (5)
MessagePackProtocolDependencyInjectionExtensions.cs (5)
13/// Extension methods for <see cref="ISignalRBuilder"/>. 23/// <param name="builder">The <see cref="ISignalRBuilder"/> representing the SignalR server to add MessagePack protocol support to.</param> 26public static TBuilder AddMessagePackProtocol<TBuilder>(this TBuilder builder) where TBuilder : ISignalRBuilder 35/// <param name="builder">The <see cref="ISignalRBuilder"/> representing the SignalR server to add MessagePack protocol support to.</param> 39public static TBuilder AddMessagePackProtocol<TBuilder>(this TBuilder builder, Action<MessagePackHubProtocolOptions> configure) where TBuilder : ISignalRBuilder
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (5)
NewtonsoftJsonProtocolDependencyInjectionExtensions.cs (5)
13/// Extension methods for <see cref="ISignalRBuilder"/>. 23/// <param name="builder">The <see cref="ISignalRBuilder"/> representing the SignalR server to add JSON protocol support to.</param> 26public static TBuilder AddNewtonsoftJsonProtocol<TBuilder>(this TBuilder builder) where TBuilder : ISignalRBuilder 35/// <param name="builder">The <see cref="ISignalRBuilder"/> representing the SignalR server to add JSON protocol support to.</param> 39public static TBuilder AddNewtonsoftJsonProtocol<TBuilder>(this TBuilder builder, Action<NewtonsoftJsonHubProtocolOptions> configure) where TBuilder : ISignalRBuilder