Indicates that the application should stop handling the current HTTP request because Veriplace has already sent a response to the end user.

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

Syntax

C#
public abstract class RespondedException : VeriplaceException
Visual Basic (Declaration)
Public MustInherit Class RespondedException _
	Inherits VeriplaceException
Visual C++
public ref class RespondedException abstract : public VeriplaceException

Remarks

This can happen in one of two ways:

In the case of a redirect or an intermediate page, the application will receive a callback request later to continue the current flow. In any case, no further action needs to be taken on the current request.

Inheritance Hierarchy

System..::.Object
  System..::.Exception
    Veriplace.Client..::.VeriplaceException
      Veriplace.Web..::.RespondedException
        Veriplace.Web..::.RedirectedException
        Veriplace.Web.Views..::.RespondedWithStatusViewException

See Also