1234567891011121314151617181920212223242526272829303132 |
-
- 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);
-
-
-
- public virtual IDictionary<String, String> Headers
- {
- get { return _headers; }
- }
-
-
-
- public virtual Stream Content { get; set; }
- }
- }
|