Files
csharp/src/KubernetesClient/IKubernetes.HttpClient.cs
Frederik Carlier aeb3a0bcc6 Add HttpClient property to the IKubernetes interface (#548)
* Add HttpClient property to the Kubernetes interface

* PR feedback
2021-01-26 19:49:40 -08:00

13 lines
256 B
C#

using System.Net.Http;
namespace k8s
{
public partial interface IKubernetes
{
/// <summary>
/// Gets the <see cref="HttpClient"/> used for making HTTP requests.
/// </summary>
HttpClient HttpClient { get; }
}
}