Breeze.Sharp.TimeSpanConverter.CanConvert C# (CSharp) Method

CanConvert() public method

public CanConvert ( Type objectType ) : bool
objectType System.Type
return bool
    public override bool CanConvert(Type objectType) {
      return objectType == typeof(TimeSpan) || objectType == typeof(TimeSpan?);
    }
  }