/
NordPixel
/
AppInspectorWindows
Обзор
Документация
Войти
/
NordPixel
/
AppInspectorWindows
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/AccessibilityInsights.SetupLibrary/ExceptionReporter.cs
19 строк
593 B
DaveTryon
Merge current Rings of Validation work to master (#253)
04 апр 2019, 01:40
Не верифицирован
04 апр 2019, 01:40
3df7709
Код
Авторство
О чём код?
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; namespace AccessibilityInsights.SetupLibrary { /// <summary> /// Interface to streamline exception reporting /// </summary> public interface IExceptionReporter { /// <summary> /// Reports an error to an implementation-specific sink /// </summary> /// <param name="exception">The exception being reported</param> void ReportException(Exception exception); } }