Exemple #1
0
        private static IReactiveServiceProvider GetServiceProvider(IRemotingReactiveServiceConnection connection)
        {
            var commandTextFactory = new CommandTextFactory <Expression>(new ClientSerializationHelpers());
            var localConnection    = new LocalReactiveServiceConnection(connection);

            return(new ReactiveServiceProvider(localConnection, commandTextFactory, commandTextFactory));
        }
Exemple #2
0
 private RemotingServiceProvider(IReactiveServiceConnection connection, CommandTextFactory <Expression> commandTextFactory)
     : base(connection, commandTextFactory, commandTextFactory)
 {
 }