CustomAttributeTypedArgument Constructores

Definición

Inicializa una nueva instancia de la clase CustomAttributeTypedArgument.

Sobrecargas

CustomAttributeTypedArgument(Object)

Inicializa una nueva instancia de la clase CustomAttributeTypedArgument con el valor especificado.

CustomAttributeTypedArgument(Type, Object)

Inicializa una nueva instancia de la clase CustomAttributeTypedArgument con el tipo y el valor especificados.

CustomAttributeTypedArgument(Object)

Source:
CustomAttributeTypedArgument.cs
Source:
CustomAttributeTypedArgument.cs
Source:
CustomAttributeTypedArgument.cs

Inicializa una nueva instancia de la clase CustomAttributeTypedArgument con el valor especificado.

public:
 CustomAttributeTypedArgument(System::Object ^ value);
public CustomAttributeTypedArgument (object value);
new System.Reflection.CustomAttributeTypedArgument : obj -> System.Reflection.CustomAttributeTypedArgument
Public Sub New (value As Object)

Parámetros

value
Object

Valor del argumento del atributo personalizado.

Excepciones

value es null.

Comentarios

El value parámetro no puede ser null para este constructor, porque el tipo de argumento se deduce del tipo de value. Para especificar un null valor, use el CustomAttributeTypedArgument(Type, Object) constructor .

Este constructor lo usan los heredadores de la CustomAttributeTypedArgument clase . No está pensado para su uso en el código de aplicación.

Se aplica a

CustomAttributeTypedArgument(Type, Object)

Source:
CustomAttributeTypedArgument.cs
Source:
CustomAttributeTypedArgument.cs
Source:
CustomAttributeTypedArgument.cs

Inicializa una nueva instancia de la clase CustomAttributeTypedArgument con el tipo y el valor especificados.

public:
 CustomAttributeTypedArgument(Type ^ argumentType, System::Object ^ value);
public CustomAttributeTypedArgument (Type argumentType, object value);
public CustomAttributeTypedArgument (Type argumentType, object? value);
new System.Reflection.CustomAttributeTypedArgument : Type * obj -> System.Reflection.CustomAttributeTypedArgument
Public Sub New (argumentType As Type, value As Object)

Parámetros

argumentType
Type

Tipo del argumento del atributo personalizado.

value
Object

Valor del argumento del atributo personalizado.

Excepciones

argumentType es null.

Comentarios

Este constructor lo usan los heredadores de la CustomAttributeTypedArgument clase . No está pensado para su uso en el código de aplicación.

Se aplica a