| 
            
              SecurityHub(ActionString, UpdateType, ActionException) Constructor
             | 
          
        
        
            Creates a new 
SecurityHub with the specified logging functions.
            
 
        
        Namespace: GSF.Web.SecurityAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.258-beta
Syntaxpublic SecurityHub(
	Action<string, UpdateType> logStatusMessageFunction,
	Action<Exception> logExceptionFunction
)
Public Sub New ( 
	logStatusMessageFunction As Action(Of String, UpdateType),
	logExceptionFunction As Action(Of Exception)
)
public:
SecurityHub(
	Action<String^, UpdateType>^ logStatusMessageFunction, 
	Action<Exception^>^ logExceptionFunction
)
new : 
        logStatusMessageFunction : Action<string, UpdateType> * 
        logExceptionFunction : Action<Exception> -> SecurityHubGSF.Web.Security.SecurityHub = function(logStatusMessageFunction, logExceptionFunction);
 View SourceParameters
- logStatusMessageFunction  ActionString, UpdateType
 - Delegate to use to log status messages, if any.
 - logExceptionFunction  ActionException
 - Delegate to use to log exceptions, if any.
 
See Also