singrdk/base/Applications/MapPointProxy/HttpResponse.cs

64 lines
1.4 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
///////////////////////////////////////////////////////////////////////////////
using System.Collections.Specialized;
public class HttpResponse
{
private string fContentType;
private byte[] fBodyData;
private StringDictionary fHeaders;
private int fStatusCode;
internal HttpResponse()
{
fHeaders = new StringDictionary();
}
public int ContentLength
{
get
{
if (fBodyData != null)
{
return fBodyData.Length;
}
else
{ return 0; }
}
}
public string ContentType
{
get { return fContentType; }
set { fContentType = value; }
}
public byte[] BodyData
{
get { return fBodyData; }
set { fBodyData = value; }
}
public int StatusCode
{
get { return fStatusCode; }
set { fStatusCode = value; }
}
public string GetHeader(string! headerName)
{
return fHeaders[headerName.ToLower()];
}
public void AddHeader(string! headerName, string! headerValue)
{
fHeaders[headerName.ToLower()] = headerValue;
}
}