Click here to Skip to main content
15,884,388 members
Articles / Programming Languages / C#

MiniHttpd: an HTTP web server library

Rate me:
Please Sign up or sign in to vote.
4.86/5 (54 votes)
30 Dec 200514 min read 2M   9.8K   230  
A portable and flexible HTTP web server library written in 100% managed C#.
using System;

namespace MiniHttpd
{
	/// <summary>
	/// Represents a file, directory or other resource with a name and a parent directory.
	/// </summary>
	/// <remarks>
	/// All objects inheriting this interface should be serializable.
	/// </remarks>
	public interface IResource : IDisposable
	{
		/// <summary>
		/// Gets the name of the entry.
		/// </summary>
		string Name
		{
			get;
		}

		/// <summary>
		/// Gets the parent directory of the object.
		/// </summary>
		IDirectory Parent
		{
			get;
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Canada Canada
The cows are here to take me home now...

Comments and Discussions