From 2a3c79df83e800d5dfe75a1a3b140ed81da2b1d6 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Mon, 16 Jul 2007 15:40:11 +0000 Subject: changed to native line ending encoding --- OpenSim/Framework/Servers/BaseStreamHandler.cs | 80 +++++++++++++------------- 1 file changed, 40 insertions(+), 40 deletions(-) (limited to 'OpenSim/Framework/Servers/BaseStreamHandler.cs') diff --git a/OpenSim/Framework/Servers/BaseStreamHandler.cs b/OpenSim/Framework/Servers/BaseStreamHandler.cs index 0d9c674..0c714e6 100644 --- a/OpenSim/Framework/Servers/BaseStreamHandler.cs +++ b/OpenSim/Framework/Servers/BaseStreamHandler.cs @@ -1,40 +1,40 @@ -using System; -using System.Collections.Generic; -using System.Text; -using System.IO; - -namespace OpenSim.Framework.Servers -{ - public abstract class BaseStreamHandler : IStreamHandler - { - virtual public string ContentType - { - get { return "application/xml"; } - } - - private string m_httpMethod; - virtual public string HttpMethod - { - get { return m_httpMethod; } - } - - private string m_path; - virtual public string Path - { - get { return m_path; } - } - - protected string GetParam( string path ) - { - return path.Substring( m_path.Length ); - } - - public abstract byte[] Handle(string path, Stream request); - - protected BaseStreamHandler(string httpMethod, string path) - { - m_httpMethod = httpMethod; - m_path = path; - } - } -} +using System; +using System.Collections.Generic; +using System.Text; +using System.IO; + +namespace OpenSim.Framework.Servers +{ + public abstract class BaseStreamHandler : IStreamHandler + { + virtual public string ContentType + { + get { return "application/xml"; } + } + + private string m_httpMethod; + virtual public string HttpMethod + { + get { return m_httpMethod; } + } + + private string m_path; + virtual public string Path + { + get { return m_path; } + } + + protected string GetParam( string path ) + { + return path.Substring( m_path.Length ); + } + + public abstract byte[] Handle(string path, Stream request); + + protected BaseStreamHandler(string httpMethod, string path) + { + m_httpMethod = httpMethod; + m_path = path; + } + } +} -- cgit v1.1