/
aprogrammer
/
reverse-proxy-ms-yarp
Обзор
Документация
Войти
/
aprogrammer
/
reverse-proxy-ms-yarp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/ReverseProxy/Forwarder/IForwarderErrorFeature.cs
22 строки
567 B
Kahbazi
File Scoped Namespaces (#1352)
12 ноя 2021, 21:53
Не верифицирован
12 ноя 2021, 21:53
44f13d9
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Yarp.ReverseProxy.Forwarder; /// <summary> /// Stores errors and exceptions that occurred when forwarding the request to the destination. /// </summary> public interface IForwarderErrorFeature { /// <summary> /// The specified ProxyError. /// </summary> ForwarderError Error { get; } /// <summary> /// An Exception that occurred when forwarding the request to the destination, if any. /// </summary> Exception? Exception { get; } }