Alexandria.Common.SaveStateEventArgs.SaveStateEventArgs C# (CSharp) Method

SaveStateEventArgs() public method

Initializes a new instance of the SaveStateEventArgs class.
public SaveStateEventArgs ( Object>.Dictionary pageState ) : System
pageState Object>.Dictionary An empty dictionary to be populated with serializable state.
return System
        public SaveStateEventArgs(Dictionary<string, Object> pageState)
            : base()
        {
            this.PageState = pageState;
        }
SaveStateEventArgs