ASPNET_VirtualUser ProcessResponse Method C# API
This method is called immediately after a Response is returned from the web server.

Namespace: TestPlant.ASP_NET
Assembly: ASP.NET (in ASP.NET.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public override void ProcessResponse(
	Response response
)

Parameters

response
Type: Facilita.Web Response
The response that has just arrived from the web server.
Remarks

If the response is a partial update of an ASP.NET form then any hidden fields (such as __VIEWSTATE) will be parsed and stored. They can then be retrieved using the GetAspNetHiddenField(Url, String) method.
See Also