1 write to DataType
System.ComponentModel.DataAnnotations (1)
DataAnnotations\DataTypeAttribute.cs (1)
53
DataType
= dataType;
8 references to DataType
System.ComponentModel.DataAnnotations (7)
DataAnnotations\DataTypeAttribute.cs (7)
7
/// Allows for clarification of the <see cref="
DataType
"/> represented by a given
20
/// Gets the string representing a custom data type. Returns a non-null value only if <see cref="
DataType
"/> is DataType.Custom.
25
/// Return the name of the data type, either using the <see cref="
DataType
"/> enum or <see cref="CustomDataType"/> string
33
if (
DataType
== DataType.Custom) {
39
return _dataTypeStrings[(int)
DataType
];
51
/// <param name="dataType">The <see cref="
DataType
"/> enum value indicating the type to apply.</param>
109
if (this.
DataType
== DataType.Custom && String.IsNullOrEmpty(this.CustomDataType)) {
System.Web (1)
ModelBinding\DataTypeUtil.cs (1)
34
switch (attribute.
DataType
) {