From 6ef9d4da901a346c232458317cca6268da888e2e Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Mon, 18 Aug 2008 00:39:10 +0000 Subject: Formatting cleanup. --- OpenSim/Framework/Servers/OSHttpRequest.cs | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'OpenSim/Framework/Servers/OSHttpRequest.cs') diff --git a/OpenSim/Framework/Servers/OSHttpRequest.cs b/OpenSim/Framework/Servers/OSHttpRequest.cs index 0a82a04..01e71c8 100644 --- a/OpenSim/Framework/Servers/OSHttpRequest.cs +++ b/OpenSim/Framework/Servers/OSHttpRequest.cs @@ -38,42 +38,35 @@ namespace OpenSim.Framework.Servers { public class OSHttpRequest { - - public string[] AcceptTypes { get { return _acceptTypes; } } private string[] _acceptTypes; - public Encoding ContentEncoding { get { return _contentEncoding; } } private Encoding _contentEncoding; - public long ContentLength { get { return _contentLength64; } } private long _contentLength64; - public long ContentLength64 { get { return ContentLength; } } - public string ContentType { get { return _contentType; } } private string _contentType; - // public CookieCollection Cookies // { // get { return _cookies; } @@ -92,63 +85,54 @@ namespace OpenSim.Framework.Servers } private string _httpMethod; - public Stream InputStream { get { return _inputStream; } } private Stream _inputStream; - // public bool IsSecureConnection // { // get { return _isSecureConnection; } // } // private bool _isSecureConnection; - // public bool IsAuthenticated // { // get { return _isAuthenticated; } // } // private bool _isAuthenticated; - public bool HasEntityBody { get { return _hasbody; } } private bool _hasbody; - public bool KeepAlive { get { return _keepAlive; } } private bool _keepAlive; - public string RawUrl { get { return _rawUrl; } } private string _rawUrl; - public Uri Url { get { return _url; } } private Uri _url; - public string UserAgent { get { return _userAgent; } } private string _userAgent; - public NameValueCollection QueryString { get { return _queryString; } @@ -161,28 +145,24 @@ namespace OpenSim.Framework.Servers } private Hashtable _query; - public IPEndPoint RemoteIPEndPoint { get { return _ipEndPoint; } } private IPEndPoint _ipEndPoint; - internal HttpRequest HttpRequest { get { return _request; } } private HttpRequest _request; - internal HttpClientContext HttpClientContext { get { return _context; } } private HttpClientContext _context; - /// /// Internal whiteboard for handlers to store temporary stuff /// into. @@ -193,12 +173,10 @@ namespace OpenSim.Framework.Servers } private Dictionary _whiteboard = new Dictionary(); - public OSHttpRequest() { } - public OSHttpRequest(HttpListenerRequest req) { _acceptTypes = req.AcceptTypes; -- cgit v1.1