C# Class NUnit.Framework.PropertyAttribute

Inheritance: System.Attribute
Afficher le fichier Open project: antonsamarsky/emitmapper-tools

Méthodes publiques

Méthode Description
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

Méthodes protégées

Méthode Description
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.

Method Details

PropertyAttribute() protected méthode

Constructor for derived classes that set the property dictionary directly.
protected PropertyAttribute ( ) : System
Résultat System

PropertyAttribute() protected méthode

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
Résultat System

PropertyAttribute() public méthode

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
Résultat System

PropertyAttribute() public méthode

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
Résultat System

PropertyAttribute() public méthode

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
Résultat System