IResponseHandler.cs 311 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.Handlers
  9. {
  10. internal interface IResponseHandler
  11. {
  12. void Handle(ServiceResponse response);
  13. }
  14. }