Gets or sets the URL to which the user is redirected after signing in.
Namespace: Microsoft.IdentityModel.Web.Controls
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As SignInControl
Dim value As String

value = instance.DestinationPageUrl

instance.DestinationPageUrl = value

Syntax

Visual Basic
<EditorAttribute(GetType(UrlEditor), GetType(UITypeEditor))> _
<DefaultValueAttribute("")> _
<UrlPropertyAttribute> _
<ThemeableAttribute(False)> _
Public Overridable Property DestinationPageUrl As String
C#
[EditorAttribute(typeof(UrlEditor), typeof(UITypeEditor))] 
[DefaultValueAttribute("")] 
[UrlPropertyAttribute] 
[ThemeableAttribute(false)] 
public virtual string DestinationPageUrl { get; set; }
C++
[EditorAttribute(typeof(UrlEditor), typeof(UITypeEditor))] 
[DefaultValueAttribute(L"")] 
[UrlPropertyAttribute] 
[ThemeableAttribute(false)] 
public:
virtual property String^ DestinationPageUrl {
		String^ get ();
		void set (String^ value);
}
J#
/** @property */
public String get_DestinationPageUrl ()

/** @property */
public void set_DestinationPageUrl (String value)
JScript
public function get DestinationPageUrl () : String

public function set DestinationPageUrl (value : String)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also