|   | LogEventFunctionSignature Delegate | 
        
        
            Defines the function signature delegate used for logging events from the 
ISecurityProvider.
            
 GSF.Security (in GSF.Security.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic delegate void LogEventFunctionSignature(
	string source,
	string message,
	EventLogEntryType type,
	int eventID
)
Public Delegate Sub LogEventFunctionSignature ( 
	source As String,
	message As String,
	type As EventLogEntryType,
	eventID As Integer
)
public delegate void LogEventFunctionSignature(
	String^ source, 
	String^ message, 
	EventLogEntryType type, 
	int eventID
)
type LogEventFunctionSignature = 
    delegate of 
        source : string * 
        message : string * 
        type : EventLogEntryType * 
        eventID : int -> unitfunction(source, message, type, eventID);
Parameters
- source  String
- The source by which the application is registered on the specified computer.
- message  String
- The string to write to the event log.
- type  EventLogEntryType
- One of the EventLogEntryType values.
- eventID  Int32
- The application-specific identifier for the event.
 See Also
See Also