NavigationService.Source Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the URI of the current content, or the URI of new content that is currently being navigated to.
public:
property Uri ^ Source { Uri ^ get(); void set(Uri ^ value); };
public Uri Source { get; set; }
member this.Source : Uri with get, set
Public Property Source As Uri
Property Value
A Uri that contains the URI for the current content, or the content that is currently being navigated to.
Remarks
If you set this property to a different URI than the one currently being displayed, the navigator (NavigationWindow, Frame) navigates to the specified URI.
Source is set to the content that is loaded from the URI that is navigated to, unless the navigation is canceled.
Source can be set with a fragment-only URI, and can be set to null
.