LoadStateEventArgs Constructor |
Namespace: foodez.CommonAssembly: foodez.WindowsPhone (in foodez.WindowsPhone.exe) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic LoadStateEventArgs(
Object navigationParameter,
Dictionary<string, Object> pageState
)
Public Sub New (
navigationParameter As Object,
pageState As Dictionary(Of String, Object)
)
public:
LoadStateEventArgs(
Object^ navigationParameter,
Dictionary<String^, Object^>^ pageState
)
new :
navigationParameter : Object *
pageState : Dictionary<string, Object> -> LoadStateEventArgs
Parameters
- navigationParameter
- Type: SystemObject
The parameter value passed to Navigate(Type, Object)
when this page was initially requested.
- pageState
- Type: System.Collections.GenericDictionaryString, Object
A dictionary of state preserved by this page during an earlier
session. This will be null the first time a page is visited.
See Also