1234567891011121314151617181920 |
- /*
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved.
- *
- * 版权所有 (C)阿里云计算有限公司
- */
- using System.Diagnostics;
- using Aliyun.OSS.Common.Communication;
- namespace Aliyun.OSS.Common.Handlers
- {
- internal class ResponseHandler : IResponseHandler
- {
- public virtual void Handle(ServiceResponse response)
- {
- Debug.Assert(response != null);
- }
- }
- }
|