MimeTypes Property

HttpServer.dll

List with all mime-type that are allowed.

Namespace:  HttpServer.HttpModules
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public IDictionary<string, string> MimeTypes { get; }
Visual Basic (Declaration)
Public ReadOnly Property MimeTypes As IDictionary(Of String, String)
Visual C++
public:
property IDictionary<String^, String^>^ MimeTypes {
	IDictionary<String^, String^>^ get ();
}

Remarks

All other mime types will result in a Forbidden http status code.

See Also