|   | ServiceHelperUpdateStatus(Guid, UpdateType, String, Object) Method | 
        
        
            Provides a status update to the specified client.
            
        
        Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic void UpdateStatus(
	Guid client,
	UpdateType type,
	string message,
	params Object[] args
)
Public Sub UpdateStatus ( 
	client As Guid,
	type As UpdateType,
	message As String,
	ParamArray args As Object()
)
public:
void UpdateStatus(
	Guid client, 
	UpdateType type, 
	String^ message, 
	... array<Object^>^ args
)
member UpdateStatus : 
        client : Guid * 
        type : UpdateType * 
        message : string * 
        args : Object[] -> unit function UpdateStatus(client, type, message, ... args);
Parameters
- client  Guid
- ID of the client to whom the message is to be sent.
- type  UpdateType
- One of the UpdateType values.
- message  String
- Text message to be transmitted to the client.
- args  Object
- Arguments to be used for formatting the message.
 See Also
See Also