public static void UnregisterProperties(Object driver)
 {
     if (driver == null)
     {
         throw new ArgumentNullException("driver");
     }
     DrivenPropertyManager.UnregisterPropertiesInternal(driver);
 }
 public static void UnregisterProperty(Object driver, Object target, string propertyPath)
 {
     if (driver == null)
     {
         throw new ArgumentNullException("driver");
     }
     if (target == null)
     {
         throw new ArgumentNullException("target");
     }
     if (propertyPath == null)
     {
         throw new ArgumentNullException("propertyPath");
     }
     DrivenPropertyManager.UnregisterPropertyInternal(driver, target, propertyPath);
 }
Exemple #3
0
 public static void UnregisterProperty(Object driver, Object target, string propertyPath)
 {
     DrivenPropertyManager.UnregisterPropertyPartial(driver, target, propertyPath);
 }