csharp/aliyun-net-credentials-api/ICredentials.cs (10 lines of code) (raw):

namespace Aliyun.Credentials.Api { public interface ICredentials { string AccessKeyId { get; } string AccessKeySecret { get; } string SecurityToken { get; } string ProviderName { get; } } }