CustomServerBase Class

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.

The base class for the custom server class.

Syntax

Visual Basic (Declaration) 
Public MustInherit Class CustomServerBase 
C# 
public abstract class CustomServerBase 

Remarks

Your custom server extends CustomServerBase and implements any of the interfaces relevant to the functionality it exposes.
public class MyAppSrv:
 CustomServerBase,
 IRecord,
 IMyAppSrvRun,
 ITableVerify,
 IMyAppSrvCustProp,
 IComponentDetector

CustomServerBase exports utility methods through the UtilityObject reference to the IUtilityObject.

Inheritance Hierarchy

System.Object
   Mercury.QTP.Slv.CustomServer.CustomServerBase

Public Methods

 NameDescription
Public MethodInitThis method supports the UFT infrastructure. Do not override it and do not call it in your code.  
Top

See Also