Exemplo n.º 1
0
 public static void RegisterIntermodMethod(string imcmethodName, CallMethodDelegate method, Type[] paramtypes, Type returnType)
 {
     RegisterIntermodMethod(imcmethodName, new IntermodCommunicationInfo(method, paramtypes, returnType));
 }
Exemplo n.º 2
0
 public static void RegisterIntermodMethod(string imcmethodName, CallMethodDelegate method)
 {
     RegisterIntermodMethod(imcmethodName, new IntermodCommunicationInfo(method, null, null));
 }
Exemplo n.º 3
0
 public IntermodCommunicationInfo(CallMethodDelegate methodDelegate, Type[] types, Type returnType)
 {
     MethodDelegate = methodDelegate;
     Types          = types;
     ReturnType     = returnType;
 }