BlobEncoder.CustomAttributeSignature Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
CustomAttributeSignature(Action<FixedArgumentsEncoder>, Action<CustomAttributeNamedArgumentsEncoder>) |
Codifica um blob de assinatura de atributo personalizado. |
CustomAttributeSignature(FixedArgumentsEncoder, CustomAttributeNamedArgumentsEncoder) |
Codifica um blob de assinatura de atributo personalizado. Retorna um par de codificadores que devem ser usados na ordem em que aparecem na lista de parâmetros. |
CustomAttributeSignature(Action<FixedArgumentsEncoder>, Action<CustomAttributeNamedArgumentsEncoder>)
- Origem:
- BlobEncoders.cs
- Origem:
- BlobEncoders.cs
- Origem:
- BlobEncoders.cs
Codifica um blob de assinatura de atributo personalizado.
public:
void CustomAttributeSignature(Action<System::Reflection::Metadata::Ecma335::FixedArgumentsEncoder> ^ fixedArguments, Action<System::Reflection::Metadata::Ecma335::CustomAttributeNamedArgumentsEncoder> ^ namedArguments);
public void CustomAttributeSignature (Action<System.Reflection.Metadata.Ecma335.FixedArgumentsEncoder> fixedArguments, Action<System.Reflection.Metadata.Ecma335.CustomAttributeNamedArgumentsEncoder> namedArguments);
member this.CustomAttributeSignature : Action<System.Reflection.Metadata.Ecma335.FixedArgumentsEncoder> * Action<System.Reflection.Metadata.Ecma335.CustomAttributeNamedArgumentsEncoder> -> unit
Public Sub CustomAttributeSignature (fixedArguments As Action(Of FixedArgumentsEncoder), namedArguments As Action(Of CustomAttributeNamedArgumentsEncoder))
Parâmetros
- fixedArguments
- Action<FixedArgumentsEncoder>
Chamado primeiro, para codificar argumentos fixos.
- namedArguments
- Action<CustomAttributeNamedArgumentsEncoder>
Chamado em segundo lugar, para codificar argumentos nomeados.
Exceções
fixedArguments
ou namedArguments
é null
.
Aplica-se a
CustomAttributeSignature(FixedArgumentsEncoder, CustomAttributeNamedArgumentsEncoder)
- Origem:
- BlobEncoders.cs
- Origem:
- BlobEncoders.cs
- Origem:
- BlobEncoders.cs
Codifica um blob de assinatura de atributo personalizado. Retorna um par de codificadores que devem ser usados na ordem em que aparecem na lista de parâmetros.
public:
void CustomAttributeSignature([Runtime::InteropServices::Out] System::Reflection::Metadata::Ecma335::FixedArgumentsEncoder % fixedArguments, [Runtime::InteropServices::Out] System::Reflection::Metadata::Ecma335::CustomAttributeNamedArgumentsEncoder % namedArguments);
public void CustomAttributeSignature (out System.Reflection.Metadata.Ecma335.FixedArgumentsEncoder fixedArguments, out System.Reflection.Metadata.Ecma335.CustomAttributeNamedArgumentsEncoder namedArguments);
member this.CustomAttributeSignature : FixedArgumentsEncoder * CustomAttributeNamedArgumentsEncoder -> unit
Public Sub CustomAttributeSignature (ByRef fixedArguments As FixedArgumentsEncoder, ByRef namedArguments As CustomAttributeNamedArgumentsEncoder)
Parâmetros
- fixedArguments
- FixedArgumentsEncoder
Use em primeiro lugar, para codificar argumentos fixos.
- namedArguments
- CustomAttributeNamedArgumentsEncoder
Use em segundo lugar, para codificar argumentos nomeados.