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