* Changed auto-properties to properties with backing field

* This fixes mantis #3650
0.6.5-rc1
lbsa71 2009-05-14 08:12:23 +00:00
parent d843b897b2
commit c6e2fc947b
1 changed files with 13 additions and 2 deletions

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; }
}
}
}