Files
UnrealEngine/Engine/Source/Programs/Shared/EpicGames.Horde/IHordeHttpMessageHandler.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

18 lines
416 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.Net.Http;
namespace EpicGames.Horde
{
/// <summary>
/// Provides access to a <see cref="HttpMessageHandler"/> instances for Horde with a default resiliance pipeline.
/// </summary>
public interface IHordeHttpMessageHandler
{
/// <summary>
/// Instance of the http message handler
/// </summary>
HttpMessageHandler Instance { get; }
}
}