ResponseHandler.cs 429 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) Alibaba Cloud Computing
  3. * All rights reserved.
  4. *
  5. * 版权所有 (C)阿里云计算有限公司
  6. */
  7. using System.Diagnostics;
  8. using Aliyun.OSS.Common.Communication;
  9. namespace Aliyun.OSS.Common.Handlers
  10. {
  11. internal class ResponseHandler : IResponseHandler
  12. {
  13. public virtual void Handle(ServiceResponse response)
  14. {
  15. Debug.Assert(response != null);
  16. }
  17. }
  18. }