aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs
blob: 9e097b88f7b6ac1aa3351c3e6328e86bb79bc6e9 (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; }
        }
    }
}