|
SecurityHub(String, ActionString, UpdateType, ActionException) Constructor
|
Namespace: GSF.Web.SecurityAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.230-beta
Syntaxpublic SecurityHub(
string settingsCategory,
Action<string, UpdateType> logStatusMessageFunction,
Action<Exception> logExceptionFunction
)
Public Sub New (
settingsCategory As String,
logStatusMessageFunction As Action(Of String, UpdateType),
logExceptionFunction As Action(Of Exception)
)
public:
SecurityHub(
String^ settingsCategory,
Action<String^, UpdateType>^ logStatusMessageFunction,
Action<Exception^>^ logExceptionFunction
)
new :
settingsCategory : string *
logStatusMessageFunction : Action<string, UpdateType> *
logExceptionFunction : Action<Exception> -> SecurityHub
GSF.Web.Security.SecurityHub = function(settingsCategory, logStatusMessageFunction, logExceptionFunction);
View SourceParameters
- settingsCategory String
- Setting category that contains the connection settings. Defaults to "securityProvider".
- logStatusMessageFunction ActionString, UpdateType
- Delegate to use to log status messages, if any.
- logExceptionFunction ActionException
- Delegate to use to log exceptions, if any.
See Also