Gets the result that was returned when the command was executed, if available.

Namespace:  Endeca.Web.Url
Assembly:  Endeca.Web (in Endeca.Web.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
public Object CommandResult { get; internal set; }
Visual Basic (Declaration)
Public Property CommandResult As Object
Visual C++
public:
property Object^ CommandResult {
	Object^ get ();
	void set (Object^ value);
}

Remarks

If a command has been executed after it has was registered with UrlManager, the manager collects the results and makes it available through this property. The results may be used by a UrlProvider implementation when constructing a URL, perhaps for SEO purposes.

See Also