HttpResponse.IsRequestBeingRedirected Property
.NET Framework 3.0
Gets a Boolean value indicating whether the client is being transferred to a new location.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public ReadOnly Property IsRequestBeingRedirected As Boolean 'Usage Dim instance As HttpResponse Dim value As Boolean value = instance.IsRequestBeingRedirected
/** @property */ public boolean get_IsRequestBeingRedirected ()
public function get IsRequestBeingRedirected () : boolean
Not applicable.
Property Value
true if the value of location response header is different than the current location; otherwise, false.Use the IsRequestBeingRedirected property with the RedirectLocation property to test and determine if the absolute URI that is transmitted to the client in the HTTP Location header is different than the current URI and what the new intended URI that is being transferred to will be.
Community Additions
ADD
Show: