Add HttpClient property to the IKubernetes interface (#548)
* Add HttpClient property to the Kubernetes interface * PR feedback
This commit is contained in:
12
src/KubernetesClient/IKubernetes.HttpClient.cs
Normal file
12
src/KubernetesClient/IKubernetes.HttpClient.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user