Castle.DynamicProxy.Generators.Emitters.EventEmitter.EventEmitter C# (CSharp) 메소드

EventEmitter() 공개 메소드

public EventEmitter ( AbstractTypeEmitter typeEmitter, string name, EventAttributes attributes, Type type ) : System
typeEmitter AbstractTypeEmitter
name string
attributes EventAttributes
type System.Type
리턴 System
		public EventEmitter(AbstractTypeEmitter typeEmitter, string name, EventAttributes attributes, Type type)
		{
			this.typeEmitter = typeEmitter;
			this.type = type;
			this.name = name;
			eventBuilder = typeEmitter.TypeBuilder.DefineEvent(name, attributes, type);
		}