|   | ServiceHelperSendActionableResponse Method | 
        
        
            Sends an actionable response to client along with an optional formatted message and attachment.
            
        
        Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic void SendActionableResponse(
	ClientRequestInfo requestInfo,
	bool success,
	Object attachment = null,
	string status = null,
	params Object[] args
)
Public Sub SendActionableResponse ( 
	requestInfo As ClientRequestInfo,
	success As Boolean,
	Optional attachment As Object = Nothing,
	Optional status As String = Nothing,
	ParamArray args As Object()
)
public:
void SendActionableResponse(
	ClientRequestInfo^ requestInfo, 
	bool success, 
	Object^ attachment = nullptr, 
	String^ status = nullptr, 
	... array<Object^>^ args
)
member SendActionableResponse : 
        requestInfo : ClientRequestInfo * 
        success : bool * 
        ?attachment : Object * 
        ?status : string * 
        args : Object[] 
(* Defaults:
        let _attachment = defaultArg attachment null
        let _status = defaultArg status null
*)
-> unit function SendActionableResponse(requestInfo, success, attachment, status, ... args);
Parameters
- requestInfo  ClientRequestInfo
- ClientRequestInfo instance containing the client request.
- success  Boolean
- Flag that determines if this response to client request was a success.
- attachment  Object  (Optional)
- Attachment to send with response.
- status  String  (Optional)
- Formatted status message to send with response.
- args  Object
- Arguments of the formatted status message.
 Remarks
Remarks
            This method is used to send an actionable client response that can be used for responding to an event after a command has been issued.
            
 See Also
See Also