CheckForInterface() public static method

public static CheckForInterface ( Type type, Type interfaceType ) : void
type System.Type
interfaceType System.Type
return void
Esempio n. 1
0
 public override void Validate(object value)
 {
     if (value != null)
     {
         ConfigurationHelper.CheckForInterface((Type)value, this.interfaceType);
     }
 }
 public override void Validate(object value)
 {
     ConfigurationHelper.CheckForInterface((Type)value, interfaceType);
 }