Files

29 lines
582 B
C#
Raw Permalink Normal View History

2025-12-11 11:39:02 +08:00
/*
* 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);
}
}
}