Errors Property

HttpServer.dll

A set of errors that occured during request processing. Key should be argument name (if argument error, otherwise Empty()()()), value should be the error message.

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

Syntax

C#
protected NameValueCollection Errors { get; set; }
Visual Basic (Declaration)
Protected Property Errors As NameValueCollection
Visual C++
protected:
property NameValueCollection^ Errors {
	NameValueCollection^ get ();
	void set (NameValueCollection^ value);
}

Remarks

Errors can be rendered into templates using the WebHelper.RenderError method.

See Also