System.Reflection.Emit.ParameterBuilder
Creates or associates parameter information.
namespace System.Reflection.Emit
{
public class ParameterBuilder
{
public virtual int Attributes { get; }
public bool IsIn { get; }
public bool IsOptional { get; }
public bool IsOut { get; }
public virtual string Name { get; }
public virtual int Position { get; }
public virtual void SetConstant(object defaultValue);
public void SetCustomAttribute(ConstructorInfo con, byte[] binaryAttribute);
public void SetCustomAttribute(CustomAttributeBuilder customBuilder);
}
}