Mono.CSharp.EventField.EventField C# (CSharp) Method

EventField() public method

public EventField ( DeclSpace parent, Mono.CSharp.FullNamedExpression type, Mono.CSharp.Modifiers mod_flags, MemberName name, Mono.CSharp.Attributes attrs ) : IKVM.Reflection
parent DeclSpace
type Mono.CSharp.FullNamedExpression
mod_flags Mono.CSharp.Modifiers
name MemberName
attrs Mono.CSharp.Attributes
return IKVM.Reflection
        public EventField(DeclSpace parent, FullNamedExpression type, Modifiers mod_flags, MemberName name, Attributes attrs)
            : base(parent, type, mod_flags, name, attrs)
        {
            Add = new AddDelegateMethod (this);
            Remove = new RemoveDelegateMethod (this);
        }