|   | ClientHelperTryParseActionableResponse Method | 
        
        
            Attempts to parse an actionable response sent from the service.
            
        
        Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic static bool TryParseActionableResponse(
	ServiceResponse serviceResponse,
	out string sourceCommand,
	out bool responseSuccess
)
Public Shared Function TryParseActionableResponse ( 
	serviceResponse As ServiceResponse,
	<OutAttribute> ByRef sourceCommand As String,
	<OutAttribute> ByRef responseSuccess As Boolean
) As Boolean
public:
static bool TryParseActionableResponse(
	ServiceResponse^ serviceResponse, 
	[OutAttribute] String^% sourceCommand, 
	[OutAttribute] bool% responseSuccess
)
static member TryParseActionableResponse : 
        serviceResponse : ServiceResponse * 
        sourceCommand : string byref * 
        responseSuccess : bool byref -> bool GSF.ServiceProcess.ClientHelper.TryParseActionableResponse = function(serviceResponse, sourceCommand, responseSuccess);
Parameters
- serviceResponse  ServiceResponse
- ServiceResponse to test for actionable response.
- sourceCommand  String
- Command that invoked serviceResponse.
- responseSuccess  Boolean
- Boolean success state of serviceResponse.
Return Value
Booleantrue if actionable response was able to be parsed successfully; otherwise 
false.
 See Also
See Also