Esempio n. 1
0
 private void FindAndSetExecutor(Type targetType, string method = null)
 {
     ExecutingType = ExecutingAssembly.MainModule.GetType(targetType.FullName);
     if (string.IsNullOrWhiteSpace(method))
     {
         return;
     }
     ExecutingMethod = ExecutingType.GetMethod(method);
 }
 public ExecutingTypeAttribute(ExecutingType executingType)
 {
     ExecutingType = executingType;
 }