You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
582 B

1 month ago
/*
* Copyright (C) Alibaba Cloud Computing
* All rights reserved.
*
* C
*/
using System;
using System.Diagnostics;
using Aliyun.Api.LOG.Common.Communication;
namespace Aliyun.Api.LOG.Common.Handlers
{
/// <summary>
/// Description of ResponseHandler.
/// </summary>
internal class ResponseHandler : IResponseHandler
{
public ResponseHandler()
{
}
public virtual void Handle(ServiceResponse response)
{
Debug.Assert(response != null);
}
}
}