ForbiddenChars Property

HttpServer.dll

characters that may not exist in a path.

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

Syntax

C#
public string[] ForbiddenChars { get; set; }
Visual Basic (Declaration)
Public Property ForbiddenChars As String()
Visual C++
public:
property array<String^>^ ForbiddenChars {
	array<String^>^ get ();
	void set (array<String^>^ value);
}

Examples

fileMod.ForbiddenChars = new string[]{ "\\", "..", ":" };

See Also