IRequestSigner.cs 337 B

12345678910111213141516
  1. /*
  2. * Copyright (C) Alibaba Cloud Computing
  3. * All rights reserved.
  4. *
  5. * 版权所有 (C)阿里云计算有限公司
  6. */
  7. using Aliyun.OSS.Common.Communication;
  8. namespace Aliyun.OSS.Common.Authentication
  9. {
  10. internal interface IRequestSigner
  11. {
  12. void Sign(ServiceRequest request, ICredentials credentials);
  13. }
  14. }