EventBuilder
Defines events for a class.
namespace System.Reflection.Emit
{
public sealed class EventBuilder
{
internal EventBuilder()
{
}
public void AddOtherMethod(MethodBuilder mdBuilder)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmit);
}
public void SetAddOnMethod(MethodBuilder mdBuilder)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmit);
}
public void SetCustomAttribute(ConstructorInfo con, byte[] binaryAttribute)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmit);
}
public void SetCustomAttribute(CustomAttributeBuilder customBuilder)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmit);
}
public void SetRaiseMethod(MethodBuilder mdBuilder)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmit);
}
public void SetRemoveOnMethod(MethodBuilder mdBuilder)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmit);
}
}
}