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