BlobEncoder.CustomAttributeSignature メソッド

定義

オーバーロード

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

カスタム属性シグネチャ BLOB をエンコードします。

CustomAttributeSignature(FixedArgumentsEncoder, CustomAttributeNamedArgumentsEncoder)

カスタム属性シグネチャ BLOB をエンコードします。 パラメーター リストに表示された順に使用する必要があるエンコーダーのペアを返します。

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

ソース:
BlobEncoders.cs
ソース:
BlobEncoders.cs
ソース:
BlobEncoders.cs

カスタム属性シグネチャ BLOB をエンコードします。

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))

パラメーター

fixedArguments
Action<FixedArgumentsEncoder>

固定引数をエンコードする場合は、最初に呼び出されます。

namedArguments
Action<CustomAttributeNamedArgumentsEncoder>

名前付き引数をエンコードする場合は、2 番目に呼び出されます。

例外

fixedArguments または namedArgumentsnull です。

適用対象

CustomAttributeSignature(FixedArgumentsEncoder, CustomAttributeNamedArgumentsEncoder)

ソース:
BlobEncoders.cs
ソース:
BlobEncoders.cs
ソース:
BlobEncoders.cs

カスタム属性シグネチャ BLOB をエンコードします。 パラメーター リストに表示された順に使用する必要があるエンコーダーのペアを返します。

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)

パラメーター

fixedArguments
FixedArgumentsEncoder

固定引数をエンコードする場合は、最初に使用します。

namedArguments
CustomAttributeNamedArgumentsEncoder

名前付き引数をエンコードする場合は、2 番目に使用します。

適用対象