Eurofurence.Companion.Common.LoadStateEventArgs.LoadStateEventArgs C# (CSharp) Method

LoadStateEventArgs() public method

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. ///
return System
        public LoadStateEventArgs(object navigationParameter, Dictionary<string, object> pageState)
            : base()
        {
            NavigationParameter = navigationParameter;
            PageState = pageState;
        }
    }
LoadStateEventArgs