TestContext.RequestedPage Property

Gets the requested page.

Namespace: Microsoft.VisualStudio.TestTools.UnitTesting
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in microsoft.visualstudio.qualitytools.unittestframework.dll)

Syntax

'Declaration
Public Overridable ReadOnly Property RequestedPage As Page
'Usage
Dim instance As TestContext
Dim value As Page

value = instance.RequestedPage
public virtual Page RequestedPage { get; }
public:
virtual property Page^ RequestedPage {
    Page^ get ();
}
/** @property */
public Page get_RequestedPage ()
public function get RequestedPage () : Page

Property Value

A Page object.

Exceptions

Exception type Condition

InvalidCastException

An invalid value type is associated with the RequestedPage property of the test context.

Remarks

This property is only valid when running ASP.NET unit tests. This property references the Page object created by the URL used to invoke the test.

See Also

Reference

TestContext Class
TestContext Members
Microsoft.VisualStudio.TestTools.UnitTesting Namespace

Concepts

Using the TestContext Class