* Changed auto-properties to properties with backing field

* This fixes mantis #3650
This commit is contained in:
lbsa71
2009-05-14 08:12:23 +00:00
parent d843b897b2
commit c6e2fc947b

View File

@@ -7,7 +7,18 @@ namespace OpenSim.Tests.Common.Mock
{
public class TestOSHttpResponse : OSHttpResponse
{
public override int StatusCode { get; set; }
public override string ContentType { get; set; }
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; }
}
}
}