Mercurial > hg > ucis.core
annotate Pml/IPmlRpc.cs @ 81:3352f89cf6f5
FBGUI ContainerControl fixes (client area, keyboard capture)
author | Ivo Smits <Ivo@UCIS.nl> |
---|---|
date | Sun, 23 Feb 2014 16:56:42 +0100 |
parents | 3ab940a0c7a0 |
children |
rev | line source |
---|---|
0 | 1 ???using System; |
2 using System.Collections.Generic; | |
3 | |
4 namespace UCIS.Pml { | |
5 interface IPmlRpcServer { | |
6 IDictionary<string, Delegate> ExportedMethods { get; } | |
7 IDictionary<string, Object> ExportedObjects { get; } | |
8 } | |
9 interface IPmlRpcClient { | |
10 void Call(String method, params Object[] args); | |
11 void Invoke(String method, params Object[] args); | |
12 void BeginInvoke(String method, Object[] args, AsyncCallback callback, Object state); | |
13 Object EndInvoke(IAsyncResult result); | |
14 } | |
15 } |