PropertyAttribute Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
PropertyAttribute() |
Constructor para las clases derivadas que establecen el diccionario de propiedades directamente. |
PropertyAttribute(Object) |
Constructor para su uso por clases derivadas que usan el nombre del tipo como nombre de propiedad. Las clases derivadas deben asegurarse de que el tipo del valor de propiedad es un tipo estándar admitido por la BCL. Cualquier tipo personalizado provocará una excepción de serialización cuando se encuentra en el cliente. |
PropertyAttribute(String, Double) |
Construir un PropertyAttribute con un nombre y un valor doble |
PropertyAttribute(String, Int32) |
Construir un PropertyAttribute con un nombre y un valor int |
PropertyAttribute(String, String) |
Construir un PropertyAttribute con un nombre y un valor de cadena |
PropertyAttribute()
Constructor para las clases derivadas que establecen el diccionario de propiedades directamente.
protected PropertyAttribute ();
Se aplica a
PropertyAttribute(Object)
Constructor para su uso por clases derivadas que usan el nombre del tipo como nombre de propiedad. Las clases derivadas deben asegurarse de que el tipo del valor de propiedad es un tipo estándar admitido por la BCL. Cualquier tipo personalizado provocará una excepción de serialización cuando se encuentra en el cliente.
protected PropertyAttribute (object propertyValue);
new NUnit.Framework.PropertyAttribute : obj -> NUnit.Framework.PropertyAttribute
Parámetros
- propertyValue
- Object
Se aplica a
PropertyAttribute(String, Double)
Construir un PropertyAttribute con un nombre y un valor doble
public PropertyAttribute (string propertyName, double propertyValue);
new NUnit.Framework.PropertyAttribute : string * double -> NUnit.Framework.PropertyAttribute
Parámetros
- propertyName
- String
El nombre de la propiedad
- propertyValue
- Double
Valor de la propiedad
Se aplica a
PropertyAttribute(String, Int32)
Construir un PropertyAttribute con un nombre y un valor int
public PropertyAttribute (string propertyName, int propertyValue);
new NUnit.Framework.PropertyAttribute : string * int -> NUnit.Framework.PropertyAttribute
Parámetros
- propertyName
- String
El nombre de la propiedad
- propertyValue
- Int32
Valor de la propiedad
Se aplica a
PropertyAttribute(String, String)
Construir un PropertyAttribute con un nombre y un valor de cadena
public PropertyAttribute (string propertyName, string propertyValue);
new NUnit.Framework.PropertyAttribute : string * string -> NUnit.Framework.PropertyAttribute
Parámetros
- propertyName
- String
El nombre de la propiedad
- propertyValue
- String
Valor de la propiedad