14 lines
436 B
C#
14 lines
436 B
C#
using AyCode.Core.Serializers.Binaries;
|
|
|
|
namespace AyCode.Services.SignalRs;
|
|
|
|
/// <summary>
|
|
/// Project-specific binary protocol.
|
|
/// Register this in PluginNopStartup.cs and AcSignalRClientBase instead of AcBinaryHubProtocol.
|
|
/// </summary>
|
|
public class AyCodeBinaryHubProtocol : AcBinaryHubProtocol
|
|
{
|
|
public AyCodeBinaryHubProtocol() { }
|
|
public AyCodeBinaryHubProtocol(AcBinarySerializerOptions options) : base(options) { }
|
|
}
|