* Optimized usings

* Shortened type references
* Removed redundant 'this' qualifier
This commit is contained in:
lbsa71
2007-10-30 09:05:31 +00:00
parent c32d1f0562
commit 67e12b95ea
353 changed files with 15459 additions and 10338 deletions

View File

@@ -26,9 +26,6 @@
*
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace OpenSim.Framework.Servers
@@ -36,15 +33,15 @@ namespace OpenSim.Framework.Servers
public interface IStreamHandler
{
// Handle request stream, return byte array
byte[] Handle(string path, Stream request );
byte[] Handle(string path, Stream request);
// Return response content type
string ContentType { get; }
// Return required http method
string HttpMethod { get;}
string HttpMethod { get; }
// Return path
string Path { get; }
}
}
}