2 overrides of Invoke
DesignSurface (1)
CustomControls\DesignerActionVerbItem.cs (1)
20public override void Invoke() => _targetVerb.Invoke();
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerActionVerbItem.cs (1)
20public override void Invoke() => _targetVerb.Invoke();
9 references to Invoke
System.Windows.Forms.Design (2)
System\ComponentModel\Design\DesignerActionMethodItem.cs (1)
66Invoke();
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (1)
62_methodItem!.Invoke();
System.Windows.Forms.Design.Tests (7)
System\ComponentModel\Design\DesignerActionMethodItemTests.cs (6)
195item.Invoke(); 200item.Invoke(); 208Assert.Throws<InvalidOperationException>(() => item.Invoke()); 219Assert.Throws<InvalidOperationException>(() => item.Invoke()); 227Assert.Throws<ArgumentNullException>("name", () => item.Invoke()); 235Assert.Throws<TargetParameterCountException>(() => item.Invoke());
System\ComponentModel\Design\DesignerActionServiceTests.cs (1)
604actionItem.Invoke();