aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs48
1 files changed, 24 insertions, 24 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs b/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs
index 9e097b8..59d4000 100644
--- a/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs
+++ b/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs
@@ -1,24 +1,24 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using OpenSim.Framework.Servers.HttpServer; 4using OpenSim.Framework.Servers.HttpServer;
5 5
6namespace OpenSim.Tests.Common.Mock 6namespace OpenSim.Tests.Common.Mock
7{ 7{
8 public class TestOSHttpResponse : OSHttpResponse 8 public class TestOSHttpResponse : OSHttpResponse
9 { 9 {
10 private int m_statusCode; 10 private int m_statusCode;
11 public override int StatusCode 11 public override int StatusCode
12 { 12 {
13 get { return m_statusCode; } 13 get { return m_statusCode; }
14 set { m_statusCode = value; } 14 set { m_statusCode = value; }
15 } 15 }
16 16
17 private string m_contentType; 17 private string m_contentType;
18 public override string ContentType 18 public override string ContentType
19 { 19 {
20 get { return m_contentType; } 20 get { return m_contentType; }
21 set { m_contentType = value; } 21 set { m_contentType = value; }
22 } 22 }
23 } 23 }
24} 24}