aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs
blob: 59d40007d50e9ac03673f4f4aa47d4cc6621fbd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Servers.HttpServer;

namespace OpenSim.Tests.Common.Mock
{
    public class TestOSHttpResponse : OSHttpResponse
    {
        private int m_statusCode;
        public override int StatusCode
        {
            get { return m_statusCode; }
            set { m_statusCode = value; }
        }

        private string m_contentType;
        public override string ContentType
        {
            get { return m_contentType; }
            set { m_contentType = value; }
        }
    }
}