1 type derived from GetBoolValueEvent
System.Windows.Forms (1)
System\Windows\Forms\ComponentModel\COM2Interop\GetRefreshStateEvent.cs (1)
8internal class GetRefreshStateEvent : GetBoolValueEvent
3 instantiations of GetBoolValueEvent
System.Windows.Forms (3)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (3)
347GetBoolValueEvent getBoolEvent = new(_readOnly); 453GetBoolValueEvent boolEvent = new(defaultValue: false); 912GetBoolValueEvent e = new(defaultValue: false);
11 references to GetBoolValueEvent
System.Windows.Forms (11)
System\Windows\Forms\ComponentModel\COM2Interop\COM2IVsPerPropertyBrowsingHandler.cs (3)
108private unsafe void OnCanResetPropertyValue(Com2PropertyDescriptor sender, GetBoolValueEvent e) 143private unsafe void OnGetIsReadOnly(Com2PropertyDescriptor sender, GetBoolValueEvent e) 200private unsafe void OnShouldSerializeValue(Com2PropertyDescriptor sender, GetBoolValueEvent e)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (7)
347GetBoolValueEvent getBoolEvent = new(_readOnly); 453GetBoolValueEvent boolEvent = new(defaultValue: false); 734protected void OnCanResetValue(GetBoolValueEvent e) => RaiseGetBoolValueEvent(s_eventCanResetValue, e); 752protected void OnGetIsReadOnly(GetBoolValueEvent e) => RaiseGetBoolValueEvent(s_eventGetIsReadOnly, e); 762protected void OnShouldSerializeValue(GetBoolValueEvent e) => RaiseGetBoolValueEvent(s_eventShouldSerializeValue, e); 766private void RaiseGetBoolValueEvent(object key, GetBoolValueEvent e) 912GetBoolValueEvent e = new(defaultValue: false);
System\Windows\Forms\ComponentModel\COM2Interop\GetBoolValueEvent.cs (1)
6internal delegate void GetBoolValueEventHandler(Com2PropertyDescriptor sender, GetBoolValueEvent e);