/* * Copyright (C) Alibaba Cloud Computing * All rights reserved. * * 版权所有 (C)阿里云计算有限公司 */ using System; using System.Collections.Generic; using System.IO; namespace Aliyun.Api.LOG.Common.Communication { /// /// Description of ServiceMessage. /// internal class ServiceMessage { // HTTP header keys are case-insensitive. protected IDictionary _headers; /// /// Gets the dictionary of HTTP headers. /// public virtual IDictionary Headers { get { return _headers; } } /// /// Gets or sets the content stream. /// public virtual Stream Content { get; set; } /// /// Constructor. /// public ServiceMessage() { } } }