diff options
author | Jeff Ames | 2009-05-17 10:26:00 +0000 |
---|---|---|
committer | Jeff Ames | 2009-05-17 10:26:00 +0000 |
commit | 5cfd84c92427658d88c4b36e1470744babd3d54d (patch) | |
tree | 5a08dd22f5866dd4e0cf0bdbed9353561390fa70 /OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs | |
parent | Removing a superfluous message, just to make bamboo run again. (diff) | |
download | opensim-SC_OLD-5cfd84c92427658d88c4b36e1470744babd3d54d.zip opensim-SC_OLD-5cfd84c92427658d88c4b36e1470744babd3d54d.tar.gz opensim-SC_OLD-5cfd84c92427658d88c4b36e1470744babd3d54d.tar.bz2 opensim-SC_OLD-5cfd84c92427658d88c4b36e1470744babd3d54d.tar.xz |
Update svn properties.
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs | 48 |
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 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenSim.Framework.Servers.HttpServer; | 4 | using OpenSim.Framework.Servers.HttpServer; |
5 | 5 | ||
6 | namespace OpenSim.Tests.Common.Mock | 6 | namespace 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 | } |