ITrackingPersonalizable.EndSave Method

Definition

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.

Applies to