1234567891011121314151617181920212223242526272829303132 |
- /*
- * 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<String, String> _headers =
- new Dictionary<String, String>(StringComparer.OrdinalIgnoreCase);
- /// <summary>
- /// Gets the dictionary of HTTP headers.
- /// </summary>
- public virtual IDictionary<String, String> Headers
- {
- get { return _headers; }
- }
- /// <summary>
- /// Gets or sets the content stream.
- /// </summary>
- public virtual Stream Content { get; set; }
- }
- }
|