private SendFormat CreateSendFormat(SendActionTypes actionType, object obj) { return(new SendFormat { SendActionType = actionType, Arguments = JsonConvert.SerializeObject(obj, Settings) }); }
public static Type GetRecieveArgumentsType(SendActionTypes type) { return(Dictionary[type].Type); }
public static string GetRecieveMethod(SendActionTypes type) { return(Dictionary[type].MethodName); }