1 write to _validatorType
System.ComponentModel.DataAnnotations (1)
DataAnnotations\CustomValidationAttribute.cs (1)
77this._validatorType = validatorType;
11 references to _validatorType
System.ComponentModel.DataAnnotations (11)
DataAnnotations\CustomValidationAttribute.cs (11)
90return this._validatorType; 110_typeId = new Tuple<string, Type>(this._method, this._validatorType); 139(value != null ? value.GetType().ToString() : "null"), this._valuesType, this._validatorType, this._method)); 203if (this._validatorType == null) { 207if (!this._validatorType.IsVisible) { 208return String.Format(CultureInfo.CurrentCulture, DataAnnotationsResources.CustomValidationAttribute_Type_Must_Be_Public, this._validatorType.Name); 224MethodInfo methodInfo = this._validatorType.GetMethod(this._method, BindingFlags.Public | BindingFlags.Static); 226return String.Format(CultureInfo.CurrentCulture, DataAnnotationsResources.CustomValidationAttribute_Method_Not_Found, this._method, this._validatorType.Name); 231return String.Format(CultureInfo.CurrentCulture, DataAnnotationsResources.CustomValidationAttribute_Method_Must_Return_ValidationResult, this._method, this._validatorType.Name); 238return String.Format(CultureInfo.CurrentCulture, DataAnnotationsResources.CustomValidationAttribute_Method_Signature, this._method, this._validatorType.Name); 248return String.Format(CultureInfo.CurrentCulture, DataAnnotationsResources.CustomValidationAttribute_Method_Signature, this._method, this._validatorType.Name);