BlobEncoder.CustomAttributeSignature Método

Definición

Sobrecargas

CustomAttributeSignature(Action<FixedArgumentsEncoder>, Action<CustomAttributeNamedArgumentsEncoder>)

Codifica el blob de firma de atributo personalizado.

CustomAttributeSignature(FixedArgumentsEncoder, CustomAttributeNamedArgumentsEncoder)

Codifica el blob de firma de atributo personalizado. Devuelve un par de codificadores que se deben usar en el orden en que aparecen en la lista de parámetros.

CustomAttributeSignature(Action<FixedArgumentsEncoder>, Action<CustomAttributeNamedArgumentsEncoder>)

Codifica el blob de firma 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>

Se llama primero para codificar los argumentos fijos.

namedArguments
Action<CustomAttributeNamedArgumentsEncoder>

Se llama segundo para codificar los argumentos con nombre.

Excepciones

fixedArguments o namedArguments es null.

Se aplica a

CustomAttributeSignature(FixedArgumentsEncoder, CustomAttributeNamedArgumentsEncoder)

Codifica el blob de firma de atributo personalizado. Devuelve un par de codificadores que se deben usar en el orden en que aparecen en la 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

Se usa primero para codificar los argumentos fijos.

namedArguments
CustomAttributeNamedArgumentsEncoder

Se usa segundo para codificar los argumentos con nombre.

Se aplica a