Exemple #1
0
        public string[] GetRepositoryFolderNames(string path)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            string[] result = server.GetRepositoryFolderNames(path);

            return(result);
        }
Exemple #2
0
        public bool DeleteRepositoryFolder(string path)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            bool result = server.DeleteRepositoryFolder(path);

            return(result);
        }
Exemple #3
0
        public int GetLoadedProjectID(string projectName)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            int result = server.GetLoadedProjectID(projectName);

            return(result);
        }
Exemple #4
0
        public string GetLoadedProjectSource(int id)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            string result = server.GetLoadedProjectSource(id);

            return(result);
        }
Exemple #5
0
        public bool WaitEvent(int eid)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            bool result = server.WaitEvent(eid);

            return(result);
        }
Exemple #6
0
        public string[] GetLoadedProjectNames()
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            string[] result = server.GetLoadedProjectNames();

            return(result);
        }
Exemple #7
0
        public bool SetEventResponse(int eid, string[] responseKeyValues)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            bool result = server.SetEventResponse(eid, responseKeyValues);

            return(result);
        }
Exemple #8
0
        public int RaiseEvent(string[] eventKeyValues)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            int result = server.RaiseEvent(eventKeyValues);

            return(result);
        }
Exemple #9
0
        public int GetEventResultsCount(int eid)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            int result = server.GetEventResultsCount(eid);

            return(result);
        }
Exemple #10
0
        public string[] GetEventData(int eid)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            string[] result = server.GetEventData(eid);

            return(result);
        }
Exemple #11
0
        public string[] GetNextResult(int pid)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            string[] result = server.GetNextResult(pid);

            return(result);
        }
Exemple #12
0
        public int Run(int id)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            int result = server.Run(id);

            return(result);
        }
Exemple #13
0
        public bool Unload(int id)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            bool result = server.Unload(id);

            return(result);
        }
Exemple #14
0
        public string LoadErrors(string project)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            string result = server.LoadErrors(project);

            return(result);
        }
Exemple #15
0
        public string GetProjectSource(string projectName)
        {
            ILNETServer server = (ILNETServer)Activator.GetObject(typeof(ILNETServer), "http://localhost:8001/ILNET");

            string result = server.GetProjectSource(projectName);

            return(result);
        }