예제 #1
0
파일: Server.cs 프로젝트: mayuki/SassTray
        public static Server Start(ApplicationCore applicationCore)
        {
            var serverChannel = new IpcServerChannel("SassTray");
            ChannelServices.RegisterChannel(serverChannel, true);
            var server = new Server(applicationCore);
            RemotingServices.Marshal(server, "Server", typeof(Server));

            return server;
        }
예제 #2
0
파일: Server.cs 프로젝트: mayuki/SassTray
 public Server(ApplicationCore applicationCore)
 {
     _application = applicationCore;
 }