ITrackingPersonalizable.EndSave Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the phase after personalization data has been extracted from a control.
public:
void EndSave();
public void EndSave ();
abstract member EndSave : unit -> unit
Public Sub EndSave ()
Examples
The following code example demonstrates using the EndSave method. For a complete, working code example that consists of a control and an .aspx page, see the IPersonalizable class overview topic.
void ITrackingPersonalizable.EndSave()
{
_saving = false;
_trackingLog += "4. EndSave";
}
Sub EndSave() Implements ITrackingPersonalizable.EndSave
_saving = False
_trackingLog += "4. EndSave"
End Sub
Remarks
The Web Parts control set calls this method after personalization data has been extracted from the control.