System.Net.TimeoutValidator.CanValidate C# (CSharp) Method

CanValidate() public method

public CanValidate ( Type type ) : bool
type System.Type
return bool
        public override bool CanValidate( Type type ) {
            return ( type == typeof( int ) || type == typeof( long ) );
        }