You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
952 B
42 lines
952 B
/*
|
|
* Copyright (C) Alibaba Cloud Computing
|
|
* All rights reserved.
|
|
*
|
|
* 版权所有 (C)阿里云计算有限公司
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace Aliyun.Api.LOG.Common.Communication
|
|
{
|
|
/// <summary>
|
|
/// Description of ServiceMessage.
|
|
/// </summary>
|
|
internal class ServiceMessage
|
|
{
|
|
// HTTP header keys are case-insensitive.
|
|
protected IDictionary<String, String> _headers;
|
|
|
|
/// <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; }
|
|
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
public ServiceMessage()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|