mirror of
https://github.com/actions/runner.git
synced 2025-12-13 00:36:29 +00:00
24 lines
483 B
C#
24 lines
483 B
C#
using System;
|
|
|
|
namespace GitHub.Services.Common
|
|
{
|
|
public interface IVssCredentialStorage
|
|
{
|
|
IssuedToken RetrieveToken(
|
|
Uri serverUrl,
|
|
VssCredentialsType credentialsType);
|
|
|
|
void StoreToken(
|
|
Uri serverUrl,
|
|
IssuedToken token);
|
|
|
|
void RemoveToken(
|
|
Uri serverUrl,
|
|
IssuedToken token);
|
|
|
|
bool RemoveTokenValue(
|
|
Uri serverUrl,
|
|
IssuedToken token);
|
|
}
|
|
}
|