Alexandria.Common.LoadStateEventArgs.LoadStateEventArgs C# (CSharp) Метод

LoadStateEventArgs() публичный Метод

Initializes a new instance of the LoadStateEventArgs class.
public LoadStateEventArgs ( Object navigationParameter, Object>.Dictionary pageState ) : System
navigationParameter Object /// The parameter value passed to /// when this page was initially requested. ///
pageState Object>.Dictionary /// A dictionary of state preserved by this page during an earlier /// session. This will be null the first time a page is visited. ///
Результат System
        public LoadStateEventArgs(Object navigationParameter, Dictionary<string, Object> pageState)
            : base()
        {
            this.NavigationParameter = navigationParameter;
            this.PageState = pageState;
        }
LoadStateEventArgs