Пример #1
0
 public static void RegisterIntermodMethod(string imcmethodName, CallMethodDelegate method, Type[] paramtypes, Type returnType)
 {
     RegisterIntermodMethod(imcmethodName, new IntermodCommunicationInfo(method, paramtypes, returnType));
 }
Пример #2
0
 public static void RegisterIntermodMethod(string imcmethodName, CallMethodDelegate method)
 {
     RegisterIntermodMethod(imcmethodName, new IntermodCommunicationInfo(method, null, null));
 }
Пример #3
0
 public IntermodCommunicationInfo(CallMethodDelegate methodDelegate, Type[] types, Type returnType)
 {
     MethodDelegate = methodDelegate;
     Types          = types;
     ReturnType     = returnType;
 }