C# Класс System.ComponentModel.DataAnnotations.MaxAttribute

Наследование: System.ComponentModel.DataAnnotations.DataTypeAttribute
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
FormatErrorMessage ( string name ) : string

Applies formatting to an error message, based on the data field where the error occurred.

IsValid ( object value ) : bool

Determines whether the specified value of the object is valid.

MaxAttribute ( double max ) : System

Creates a new instance of MaxAttribute

MaxAttribute ( int max ) : System

Creates a new instance of MaxAttribute

MaxAttribute ( string errorMessage, double max ) : System

Creates a new instance of MaxAttribute

MaxAttribute ( string errorMessage, int max ) : System

Creates a new instance of MaxAttribute

Описание методов

FormatErrorMessage() публичный Метод

Applies formatting to an error message, based on the data field where the error occurred.
public FormatErrorMessage ( string name ) : string
name string The name to include in the formatted message.
Результат string

IsValid() публичный Метод

Determines whether the specified value of the object is valid.
public IsValid ( object value ) : bool
value object The value of the object to validate.
Результат bool

MaxAttribute() публичный Метод

Creates a new instance of MaxAttribute
public MaxAttribute ( double max ) : System
max double
Результат System

MaxAttribute() публичный Метод

Creates a new instance of MaxAttribute
public MaxAttribute ( int max ) : System
max int
Результат System

MaxAttribute() публичный Метод

Creates a new instance of MaxAttribute
public MaxAttribute ( string errorMessage, double max ) : System
errorMessage string
max double
Результат System

MaxAttribute() публичный Метод

Creates a new instance of MaxAttribute
public MaxAttribute ( string errorMessage, int max ) : System
errorMessage string
max int
Результат System