//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; /// /// Allows an object to load up personalization state that would /// otherwise be discarded as a result of loading property values /// that have been removed in a newer version of the object's /// implementation. /// public interface IVersioningPersonalizable { /// /// The specified dictionary contains property values that /// could not automatically be loaded into the object. /// void Load(IDictionary unknownProperties); } }