CustomServerBase Class

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.WPF.CustomServer.CustomServerBase

See Also