/* * Copyright (C) Alibaba Cloud Computing * All rights reserved. * * 版权所有 (C)阿里云计算有限公司 */ using System; using System.Collections.Generic; using System.IO; namespace Aliyun.OSS.Common.Communication { internal class ServiceMessage { private readonly IDictionary _headers = new Dictionary(StringComparer.OrdinalIgnoreCase); /// /// 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; } } }