Ejemplo n.º 1
0
        protected ClientContextBase(ServerContextBase application, IServerTransport transport)
        {
            Application = application;
            Transport   = transport;

            Scope           = Application.Container.BeginLifetimeScope(this);
            OperationSystem = new OperationSystem(Application.OperationMap, new SerializationService(Application.Serializer), Transport, HandlerFactory);
        }
Ejemplo n.º 2
0
        protected ClientContextBase(ServerContextBase application, IServerTransport transport)
        {
            Application = application;
            Transport = transport;

            Scope = Application.Container.BeginLifetimeScope(this);
            OperationSystem = new OperationSystem(Application.OperationMap, new SerializationService(Application.Serializer), Transport, HandlerFactory);
        }
Ejemplo n.º 3
0
 public PlayerClientContext(ServerContextBase application, IServerTransport transport)
     : base(application, transport)
 {
 }
 public InstanceClientContext(ServerContextBase application, IServerTransport transport)
     : base(application, transport)
 {
 }