Interface for an object that can display "status views" to the end user under certain conditions.

Namespace:  Veriplace.Web.Views
Assembly:  Veriplace.Client (in Veriplace.Client.dll) Version: 1.7.0.25986 (1.7.0.0)

Syntax

C#
public interface IStatusViewRenderer
Visual Basic (Declaration)
Public Interface IStatusViewRenderer
Visual C++
public interface class IStatusViewRenderer

Remarks

These include errors (failed location request) and intermediate steps in a request flow (a "please wait" page). To avoid dependencies on any specific web application framework, Veriplace abstracts this process into an interface.

You do not need to use an IStatusViewRenderer at all, as long as your code checks for exceptions and returns the appropriate output. Be sure to handle the WaitingException if you will be making asynchronous requests.

See Also