<PackageReference Include="System.Reflection.Emit.ILGeneration" Version="4.7.0-preview3.19551.4" />

SignatureHelper

public sealed class SignatureHelper
Provides methods for building signatures.
namespace System.Reflection.Emit { public sealed class SignatureHelper { internal SignatureHelper() { } public void AddArgument(Type clsArgument) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public void AddArgument(Type argument, bool pinned) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public void AddArgument(Type argument, Type[] requiredCustomModifiers, Type[] optionalCustomModifiers) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public void AddArguments(Type[] arguments, Type[][] requiredCustomModifiers, Type[][] optionalCustomModifiers) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public void AddSentinel() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public override bool Equals(object obj) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public static SignatureHelper GetFieldSigHelper(Module mod) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public override int GetHashCode() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public static SignatureHelper GetLocalVarSigHelper() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public static SignatureHelper GetLocalVarSigHelper(Module mod) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public static SignatureHelper GetMethodSigHelper(CallingConventions callingConvention, Type returnType) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public static SignatureHelper GetMethodSigHelper(Module mod, CallingConventions callingConvention, Type returnType) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public static SignatureHelper GetMethodSigHelper(Module mod, Type returnType, Type[] parameterTypes) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public static SignatureHelper GetPropertySigHelper(Module mod, CallingConventions callingConvention, Type returnType, Type[] requiredReturnTypeCustomModifiers, Type[] optionalReturnTypeCustomModifiers, Type[] parameterTypes, Type[][] requiredParameterTypeCustomModifiers, Type[][] optionalParameterTypeCustomModifiers) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public static SignatureHelper GetPropertySigHelper(Module mod, Type returnType, Type[] parameterTypes) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public static SignatureHelper GetPropertySigHelper(Module mod, Type returnType, Type[] requiredReturnTypeCustomModifiers, Type[] optionalReturnTypeCustomModifiers, Type[] parameterTypes, Type[][] requiredParameterTypeCustomModifiers, Type[][] optionalParameterTypeCustomModifiers) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public byte[] GetSignature() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } public override string ToString() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration); } } }