C# Класс NUnit.Framework.PropertyAttribute

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

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

Метод Описание
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