/* * Copyright (C) Alibaba Cloud Computing * All rights reserved. * * 版权所有 (C)阿里云计算有限公司 */ namespace Aliyun.OSS.Common.Authentication { /// /// 鉴权的接口 /// public interface ICredentials { /// /// OSS的访问ID /// string AccessKeyId { get; } /// /// OSS的访问密钥 /// string AccessKeySecret { get; } /// /// STS提供的安全令牌 /// string SecurityToken { get; } /// /// 是否使用了STS提供的安全令牌 /// bool UseToken { get; } } }