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

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

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.
Результат System
        public SaveStateEventArgs(Dictionary<string, Object> pageState)
            : base()
        {
            this.PageState = pageState;
        }
SaveStateEventArgs