Click or drag to resize

RecordOperationsHubTLogStatusMessage Method

Logs a status message to hub client and any provided log status message delegate.

Namespace: GSF.Web.Hubs
Assembly: GSF.Web (in GSF.Web.dll) Version: 2.4.181-beta
Syntax
protected void LogStatusMessage(
	string message,
	UpdateType type = UpdateType.Information,
	bool logToClient = true
)
View Source

Parameters

message  String
Message content to log.
type  UpdateType  (Optional)
Type of message to log.
logToClient  Boolean  (Optional)
Determines if message should be logged to hub client.
Remarks
When logToClient is true, function will call "sendInfoMessage" Javascript hub client function if defined.
See Also