lazebird.rabbit.http
2.0.3
.NET Framework 4.6.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
Install-Package lazebird.rabbit.http -Version 2.0.3
dotnet add package lazebird.rabbit.http --version 2.0.3
<PackageReference Include="lazebird.rabbit.http" Version="2.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add lazebird.rabbit.http --version 2.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: lazebird.rabbit.http, 2.0.3"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install lazebird.rabbit.http as a Cake Addin
#addin nuget:?package=lazebird.rabbit.http&version=2.0.3
// Install lazebird.rabbit.http as a Cake Tool
#tool nuget:?package=lazebird.rabbit.http&version=2.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
rhttpd
Description
Target
API
public rhttpd(Action<string> log)
- Constructor
- log:Log output interface
public void init_mime(string value)
- Initialize MIME mapping
- value:MIME mapping string, for example:
string mime = ""; mime += ".svg:image/svg+xml;"; mime += ".html:text/html;"; mime += ".htm:text/html;"; mime += ".js:application/x-javascript;"; mime += ".css:text/css;"; mime += ".mp4:video/mpeg4;"; mime += ".mpeg:video/mpg;"; mime += ".avi:video/avi;"; mime += ".mp3:audio/mp3;"; mime += ".mid:audio/mid;"; mime += ".jpg:application/x-jpg;"; mime += ".jpeg:image/jpeg;"; mime += ".img:application/x-img;"; mime += ".ico:image/x-icon;"; mime += ".png:image/png;"; mime += "*:application/octet-stream;";
public bool start(int port)
- Start rhttpd
- Port: http port number
public void stop()
- Stop rhttpd
public void set_root(string path)
- Set the server root directory, the default is empty directory
public void add_dir(string path)
- Add a folder to the root directory
- Path: folder path
public void del_dir(string path)
- Delete a folder from the root directory
- Path: folder path
public void add_file(string path)
- Add files from the root directory
- Path: file path
public void del_file(string path)
- Delete files from the root directory
- Path: file path
Sample
```
rhttpd rhttpd = new rhttpd(rhttpd_log_func);
rhttpd.init_mime(myconf.get("mime"));
rhttpd.set_root(".");
rhttpd.start(8000);
void rhttpd_log_func(string msg)
{
console.write(msg);
}
```
Product | Versions |
---|---|
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
support http server, set root dir, add dir, add file