/* * Copyright (C) Alibaba Cloud Computing * All rights reserved. * * 版权所有 (C)阿里云计算有限公司 */ using System; namespace Aliyun.Api.LOG.Common.Communication { /// /// Represent the channel that communicates with an Aliyun Open Service. /// internal interface IServiceClient { /// /// Sends a request to the service. /// /// The request data. /// The execution context. /// The response data. ServiceResponse Send(ServiceRequest request, ExecutionContext context); } }