System.ComponentModel.CustomTypeDescriptor.GetEvents C# (CSharp) Method

GetEvents() public method

public GetEvents ( Attribute attributes ) : EventDescriptorCollection
attributes System.Attribute
return EventDescriptorCollection
        public virtual EventDescriptorCollection GetEvents(Attribute[] attributes)
        {
            if (_parent != null)
            {
                return _parent.GetEvents(attributes);
            }

            return EventDescriptorCollection.Empty;
        }

Same methods

CustomTypeDescriptor::GetEvents ( ) : EventDescriptorCollection