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; }
public Server(ApplicationCore applicationCore) { _application = applicationCore; }