LiteralEncoder.TaggedVector メソッド

定義

オーバーロード

TaggedVector(Action<CustomAttributeArrayTypeEncoder>, Action<VectorEncoder>)

指定したデリゲートを使用して、ベクター リテラルの型と項目をエンコードします。

TaggedVector(CustomAttributeArrayTypeEncoder, VectorEncoder)

パラメーター一覧に出現する順序でベクター リテラルの型と項目のエンコードに使用する必要があるエンコーダーのペアを返します。

TaggedVector(Action<CustomAttributeArrayTypeEncoder>, Action<VectorEncoder>)

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

指定したデリゲートを使用して、ベクター リテラルの型と項目をエンコードします。

public:
 void TaggedVector(Action<System::Reflection::Metadata::Ecma335::CustomAttributeArrayTypeEncoder> ^ arrayType, Action<System::Reflection::Metadata::Ecma335::VectorEncoder> ^ vector);
public void TaggedVector (Action<System.Reflection.Metadata.Ecma335.CustomAttributeArrayTypeEncoder> arrayType, Action<System.Reflection.Metadata.Ecma335.VectorEncoder> vector);
member this.TaggedVector : Action<System.Reflection.Metadata.Ecma335.CustomAttributeArrayTypeEncoder> * Action<System.Reflection.Metadata.Ecma335.VectorEncoder> -> unit
Public Sub TaggedVector (arrayType As Action(Of CustomAttributeArrayTypeEncoder), vector As Action(Of VectorEncoder))

パラメーター

arrayType
Action<CustomAttributeArrayTypeEncoder>

ベクターの型のエンコードに使用されるデリゲート。 このメソッドによって最初に呼び出されます。

vector
Action<VectorEncoder>

ベクターの項目のエンコードに使用されるデリゲート。 このメソッドによって 2 番目に呼び出されます。

例外

arrayType または vectornull です。

適用対象

TaggedVector(CustomAttributeArrayTypeEncoder, VectorEncoder)

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

パラメーター一覧に出現する順序でベクター リテラルの型と項目のエンコードに使用する必要があるエンコーダーのペアを返します。

public:
 void TaggedVector([Runtime::InteropServices::Out] System::Reflection::Metadata::Ecma335::CustomAttributeArrayTypeEncoder % arrayType, [Runtime::InteropServices::Out] System::Reflection::Metadata::Ecma335::VectorEncoder % vector);
public void TaggedVector (out System.Reflection.Metadata.Ecma335.CustomAttributeArrayTypeEncoder arrayType, out System.Reflection.Metadata.Ecma335.VectorEncoder vector);
member this.TaggedVector : CustomAttributeArrayTypeEncoder * VectorEncoder -> unit
Public Sub TaggedVector (ByRef arrayType As CustomAttributeArrayTypeEncoder, ByRef vector As VectorEncoder)

パラメーター

arrayType
CustomAttributeArrayTypeEncoder

このメソッドから制御が戻るときに、ベクターの型のエンコードに使用されるカスタム属性配列型エンコーダー。

vector
VectorEncoder

このメソッドから制御が戻るときに、ベクターの項目のエンコードに使用されるベクター エンコーダー。

適用対象