|   | ClientRequestHandler(String, String, ActionClientRequestInfo, String) Constructor | 
        
        
        
        Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic ClientRequestHandler(
	string requestCommand,
	string requestDescription,
	Action<ClientRequestInfo> handlerMethod,
	string[] aliases = null
)
Public Sub New ( 
	requestCommand As String,
	requestDescription As String,
	handlerMethod As Action(Of ClientRequestInfo),
	Optional aliases As String() = Nothing
)
public:
ClientRequestHandler(
	String^ requestCommand, 
	String^ requestDescription, 
	Action<ClientRequestInfo^>^ handlerMethod, 
	array<String^>^ aliases = nullptr
)
new : 
        requestCommand : string * 
        requestDescription : string * 
        handlerMethod : Action<ClientRequestInfo> * 
        ?aliases : string[] 
(* Defaults:
        let _aliases = defaultArg aliases null
*)
-> ClientRequestHandlerGSF.ServiceProcess.ClientRequestHandler = function(requestCommand, requestDescription, handlerMethod, aliases);
Parameters
- requestCommand  String
- Command text that the ClientRequestHandler will process.
- requestDescription  String
- Description of the ClientRequestHandler.
- handlerMethod  ActionClientRequestInfo
- Delegate method that will be invoked for processing the requestCommand.
- aliases  String  (Optional)
- Optional alias names to command.
 See Also
See Also