RecordStatus Enumeration

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 OpenText Support.

Message handling statuses. Return these values from the OnMessage method that you implement to handle Windows messages.

Syntax

Visual Basic (Declaration) 
Public Enum RecordStatus 
   Inherits Enum
C# 
public enum RecordStatus : Enum  

Members

MemberDescription
RECORD_HANDLEDMessage handled by this custom server, do not pass on to any other custom servers or test objects.
RECORD_DEFAULTMessage not handled by this custom server.  Returning this value indicates that the message should be passed on to other registered event handlers.

For example, you might implement the OnMessage method to return this value if your custom server intercepted a message because it registered for all messages, but the message needs to be handled by some other custom server.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Mercury.QTP.Slv.CustomServer.RecordStatus

See Also