mirror of
https://github.com/actions/runner.git
synced 2025-12-13 00:36:29 +00:00
15 lines
314 B
C#
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);
|
|
}
|
|
}
|