/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/IntegrationTest/New.IntegrationTests/InProcess/IHotReloadUIService.cs
16 строк
610 B
Sam Harwell
Update MessageBoxInProcess to support the Hot Reload dialog
27 дек 2023, 21:46
27 дек 2023, 21:46
9110e16
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Runtime.InteropServices; namespace Roslyn.VisualStudio.NewIntegrationTests.InProcess; [ComImport] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] [Guid("4F6E5436-F098-45FF-B85F-7AE940DFCA44")] internal interface IHotReloadUIService { int ShowHotReloadDialog(bool isManaged, EditAndContinueResult result, [In][MarshalAs(UnmanagedType.BStr)] string errorMessage); }