C# 클래스 NUnit.Framework.PropertyAttribute

상속: System.Attribute
파일 보기 프로젝트 열기: antonsamarsky/emitmapper-tools

공개 메소드들

메소드 설명
PropertyAttribute ( string propertyName, double propertyValue ) : System

Construct a PropertyAttribute with a name and double value

PropertyAttribute ( string propertyName, int propertyValue ) : System

Construct a PropertyAttribute with a name and int value

PropertyAttribute ( string propertyName, string propertyValue ) : System

Construct a PropertyAttribute with a name and string value

보호된 메소드들

메소드 설명
PropertyAttribute ( ) : System

Constructor for derived classes that set the property dictionary directly.

PropertyAttribute ( object propertyValue ) : System

Constructor for use by derived classes that use the name of the type as the property name. Derived classes must ensure that the Type of the property value is a standard type supported by the BCL. Any custom types will cause a serialization Exception when in the client.

메소드 상세

PropertyAttribute() 보호된 메소드

Constructor for derived classes that set the property dictionary directly.
protected PropertyAttribute ( ) : System
리턴 System

PropertyAttribute() 보호된 메소드

Constructor for use by derived classes that use the name of the type as the property name. Derived classes must ensure that the Type of the property value is a standard type supported by the BCL. Any custom types will cause a serialization Exception when in the client.
protected PropertyAttribute ( object propertyValue ) : System
propertyValue object
리턴 System

PropertyAttribute() 공개 메소드

Construct a PropertyAttribute with a name and double value
public PropertyAttribute ( string propertyName, double propertyValue ) : System
propertyName string The name of the property
propertyValue double The property value
리턴 System

PropertyAttribute() 공개 메소드

Construct a PropertyAttribute with a name and int value
public PropertyAttribute ( string propertyName, int propertyValue ) : System
propertyName string The name of the property
propertyValue int The property value
리턴 System

PropertyAttribute() 공개 메소드

Construct a PropertyAttribute with a name and string value
public PropertyAttribute ( string propertyName, string propertyValue ) : System
propertyName string The name of the property
propertyValue string The property value
리턴 System