2 implementations of FQueryTerminate
System.Windows.Forms (1)
System\Windows\Forms\Application.ComponentThreadContext.cs (1)
466BOOL IMsoComponent.Interface.FQueryTerminate(BOOL fPromptUser) => true;
System.Windows.Forms.Tests (1)
System\Windows\Forms\Application.ComponentManagerTests.cs (1)
376BOOL IMsoComponent.Interface.FQueryTerminate(BOOL fPromptUser) => _mock.FQueryTerminate(fPromptUser);
4 references to FQueryTerminate
System.Windows.Forms.Primitives (2)
Microsoft\Office\IMsoComponent.cs (2)
92=> UnwrapAndInvoke<IMsoComponent, Interface, BOOL>(@this, o => o.FQueryTerminate(fPromptUser)); 204/// <inheritdoc cref="Interface.FQueryTerminate(BOOL)"/>
System.Windows.Forms.Tests (2)
System\Windows\Forms\Application.ComponentManagerTests.cs (2)
335mock2.Setup(m => m.FQueryTerminate(true)).Returns(true); 376BOOL IMsoComponent.Interface.FQueryTerminate(BOOL fPromptUser) => _mock.FQueryTerminate(fPromptUser);