RecordStop Method

UFT One 2022 and later: Following the discontinuance of the Silverlight development framework, UFT One no longer supports the Silverlight Add-in out of the box.

If you need to use and extend the Silverlight Add-in, contact Micro Focus Support.

Called by the UFT infrastructure at the end of the recording session to stop listening for events.

Remarks

If you add an Event handler using the the '+=' syntax, unsubscribe from all the events to which your process was listening.

For example:

SourceControl.Click += new EventHandler(this.OnClick);

Release it: 
public override void RecordStop()
{
    SourceControl.Click -= new EventHandler(this.OnClick);
}

Syntax

Visual Basic (Declaration) 
Overridable Sub RecordStop() 
C# 
virtual void RecordStop()

See Also