System.Reflection.Metadata.Ecma335.LiteralEncoder
struct LiteralEncoder
namespace System.Reflection.Metadata.Ecma335
{
internal struct LiteralEncoder
{
public BlobBuilder Builder { get; }
public LiteralEncoder(BlobBuilder builder);
public VectorEncoder Vector();
public void TaggedVector(out CustomAttributeArrayTypeEncoder arrayType, out VectorEncoder vector);
public void TaggedVector(Action<CustomAttributeArrayTypeEncoder> arrayType, Action<VectorEncoder> vector);
public ScalarEncoder Scalar();
public void TaggedScalar(out CustomAttributeElementTypeEncoder type, out ScalarEncoder scalar);
public void TaggedScalar(Action<CustomAttributeElementTypeEncoder> type, Action<ScalarEncoder> scalar);
}
}