CustomAttributeTypedArgument Construtores

Definição

Inicializa uma nova instância da classe CustomAttributeTypedArgument.

Sobrecargas

CustomAttributeTypedArgument(Object)

Inicializa uma nova instância da classe CustomAttributeTypedArgument com o valor especificado.

CustomAttributeTypedArgument(Type, Object)

Inicializa uma nova instância da classe CustomAttributeTypedArgument com o tipo e o valor especificados.

CustomAttributeTypedArgument(Object)

Origem:
CustomAttributeTypedArgument.cs
Origem:
CustomAttributeTypedArgument.cs
Origem:
CustomAttributeTypedArgument.cs

Inicializa uma nova instância da classe CustomAttributeTypedArgument com o 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

O valor do argumento do atributo personalizado.

Exceções

value é null.

Comentários

O value parâmetro não pode ser null para esse construtor, porque o tipo de argumento é inferido do tipo de value. Para especificar um null valor, use o CustomAttributeTypedArgument(Type, Object) construtor .

Esse construtor é usado por herdadores da CustomAttributeTypedArgument classe . Ele não se destina ao uso no código do aplicativo.

Aplica-se a

CustomAttributeTypedArgument(Type, Object)

Origem:
CustomAttributeTypedArgument.cs
Origem:
CustomAttributeTypedArgument.cs
Origem:
CustomAttributeTypedArgument.cs

Inicializa uma nova instância da classe CustomAttributeTypedArgument com o tipo e o 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

O tipo do argumento do atributo personalizado.

value
Object

O valor do argumento do atributo personalizado.

Exceções

argumentType é null.

Comentários

Esse construtor é usado por herdadores da CustomAttributeTypedArgument classe . Ele não se destina ao uso no código do aplicativo.

Aplica-se a