<PackageReference Include="System.Reflection.Emit.ILGeneration" Version="4.6.0-preview9.19416.11" />

ParameterBuilder

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