public SignalRClientConnectionFactoryFactory(
     ISignalRConnectionFactory factory,
     IProfileTokenProvider profileTokenProvider)
 {
     _factory = factory;
     _profileTokenProvider = profileTokenProvider;
 }
Пример #2
0
 public SignalRClientConnectionFactory(
     ISignalRConnectionFactory factory,
     IProfileTokenProvider profileTokenProvider,
     string uri)
 {
     _factory = factory;
     _profileTokenProvider = profileTokenProvider;
     _uri = uri;
 }
Пример #3
0
 public MessageProcessor(
     ILogger <MessageProcessor> logger,
     IClientConnectionFactory connectionFactory,
     IMessageDispatcher dispatcher,
     IProfileTokenProvider profileTokenProvider,
     IMessageMetadataFactory metadataFactory,
     IMessageTypeCache messageTypeCache,
     IAuthenticationService authenticationService)
 {
     _logger                = logger;
     _connectionFactory     = connectionFactory;
     _dispatcher            = dispatcher;
     _profileTokenProvider  = profileTokenProvider;
     _metadataFactory       = metadataFactory;
     _messageTypeCache      = messageTypeCache;
     _authenticationService = authenticationService;
 }
Пример #4
0
 public AuthenticationService(IProfileTokenProvider profileTokenProvider)
 {
     _profileTokenProvider = profileTokenProvider;
 }
Пример #5
0
 public ProfileTokenProvider(IProfileTokenProvider profileTokenProvider)
 {
     _profileTokenProvider = profileTokenProvider;
 }