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