Files
runner/src/Sdk/Common/Common/Authentication/IHttpHeaders.cs
2019-10-10 00:52:42 -04:00

15 lines
314 B
C#

using System;
using System.Collections.Generic;
namespace GitHub.Services.Common
{
public interface IHttpHeaders
{
IEnumerable<String> GetValues(String name);
void SetValue(String name, String value);
Boolean TryGetValues(String name, out IEnumerable<String> values);
}
}