Represents a special type of page that allows you to treat navigation to a page in a similar fashion to calling a method.
Public Class PageFunction(Of T) _ Inherits PageFunctionBase
Dim instance As PageFunction(Of T)
public class PageFunction<T> : PageFunctionBase
generic<typename T> public ref class PageFunction : public PageFunctionBase
JScript does not support generic types or methods.
<PageFunction x:TypeArguments="T"> Content </PageFunction>
The type of value that the PageFunction<(Of <(T>)>) returns to a caller.
PageFunction<(Of <(T>)>) essentially allows you to treat a page navigation like a function call, in which a page navigates to (calls) a page function.
To enable function call semantics, PageFunction<(Of <(T>)>) provides the following capabilities:
When the page function has finished processing, the page function code calls OnReturn to return to the calling page.
OnReturn accepts a ReturnEventArgs<(Of <(T>)>) parameter, which can be used to return a value by settings the Result property. Otherwise, null can be passed to OnReturn to signify no value is returned
To detect when a page function has returned, the calling page can handle the Return event.
To return a value, the page function creates an instance of the ReturnEventArgs<(Of <(T>)>) class and sets the Result property with the return value. The calling page can retrieve this value from the ReturnEventArgs<(Of <(T>)>) object that is passed to the Return event handler.
By default, a PageFunction<(Of <(T>)>) is retained in navigation history after it returns. To ensure that it is not retained in navigation history, its RemoveFromJournal property should be set to true.
See Structured Navigation Overview for details on how to use page functions.
See Navigation Topologies Overview for information on complex navigation structures that benefit from page functions.
PageFunction<(Of <(T>)>) enables the development of wizards, which is shown in Wizard Sample.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003