/// <summary>
 /// Remove the executor of the specified generic type
 /// </summary>
 /// <typeparam name="T"></typeparam>
 public void RemoveCommonService <T>()
 {
     _commonServiceProvider.Remove <T>();
     OnCommonServiceRemoved(typeof(T));
 }
Example #2
0
 public static void Unregister <T>()
 {
     Incubator.Remove <T>();
 }