다음을 통해 공유


DataTypeAttribute 생성자

정의

DataTypeAttribute 클래스의 새 인스턴스를 초기화합니다.

오버로드

DataTypeAttribute(DataType)

지정된 형식 이름을 사용하여 DataTypeAttribute 클래스의 새 인스턴스를 초기화합니다.

DataTypeAttribute(String)

지정된 필드 템플릿 이름을 사용하여 DataTypeAttribute 클래스의 새 인스턴스를 초기화합니다.

DataTypeAttribute(DataType)

Source:
DataTypeAttribute.cs
Source:
DataTypeAttribute.cs
Source:
DataTypeAttribute.cs

지정된 형식 이름을 사용하여 DataTypeAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 DataTypeAttribute(System::ComponentModel::DataAnnotations::DataType dataType);
public DataTypeAttribute (System.ComponentModel.DataAnnotations.DataType dataType);
new System.ComponentModel.DataAnnotations.DataTypeAttribute : System.ComponentModel.DataAnnotations.DataType -> System.ComponentModel.DataAnnotations.DataTypeAttribute
Public Sub New (dataType As DataType)

매개 변수

dataType
DataType

데이터 필드와 연결할 형식의 이름입니다.

예제

다음 예제에서는 사용 하는 DataTypeAttribute(DataType) 방법에 설명 합니다 데이터 필드에 대 한 대체 형식을 지정 하는 생성자입니다.

// Add type information.
[DataType(DataType.EmailAddress)]
public object EmailAddress;
' Add type information.
<DataType(DataType.EmailAddress)> _
Public EmailAddress As Object

설명

이름은 열거형에 의해 System.ComponentModel.DataAnnotations.DataType 정의된 값 중 하나입니다.

적용 대상

DataTypeAttribute(String)

Source:
DataTypeAttribute.cs
Source:
DataTypeAttribute.cs
Source:
DataTypeAttribute.cs

지정된 필드 템플릿 이름을 사용하여 DataTypeAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 DataTypeAttribute(System::String ^ customDataType);
public DataTypeAttribute (string customDataType);
new System.ComponentModel.DataAnnotations.DataTypeAttribute : string -> System.ComponentModel.DataAnnotations.DataTypeAttribute
Public Sub New (customDataType As String)

매개 변수

customDataType
String

데이터 필드와 연결할 사용자 지정 필드 템플릿의 이름입니다.

예외

customDataTypenull 또는 빈 문자열("")인 경우

설명

이 메서드는 특성을 사용하는 대신 사용할 수 있습니다 UIHintAttribute .

적용 대상