|   | IaonSessionOnStatusMessage(Object, String, UpdateType, Object) Method | 
        
        
        
        Namespace: GSF.TimeSeries.AdaptersAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.257-beta
 Syntax
Syntaxprotected virtual void OnStatusMessage(
	Object sender,
	string formattedStatus,
	UpdateType type,
	params Object[] args
)
Protected Overridable Sub OnStatusMessage ( 
	sender As Object,
	formattedStatus As String,
	type As UpdateType,
	ParamArray args As Object()
)
protected:
virtual void OnStatusMessage(
	Object^ sender, 
	String^ formattedStatus, 
	UpdateType type, 
	... array<Object^>^ args
)
abstract OnStatusMessage : 
        sender : Object * 
        formattedStatus : string * 
        type : UpdateType * 
        args : Object[] -> unit 
override OnStatusMessage : 
        sender : Object * 
        formattedStatus : string * 
        type : UpdateType * 
        args : Object[] -> unit function OnStatusMessage(sender, formattedStatus, type, ... args);
Parameters
- sender  Object
- Object source raising the event.
- formattedStatus  String
- Formatted status message.
- type  UpdateType
- UpdateType of status message.
- args  Object
- Arguments for formattedStatus.
 Remarks
Remarks
            This overload combines string.Format and SendStatusMessage for convenience.
            
 See Also
See Also