public MySqlTriggerMetricsProvider()

in src/TriggersBinding/MySqlTriggerMetricsProvider.cs [29:36]


        public MySqlTriggerMetricsProvider(string connectionString, ILogger logger, MySqlObject userTable, string userFunctionId, string userDefinedLeasesTableName)
        {
            this._connectionString = !string.IsNullOrEmpty(connectionString) ? connectionString : throw new ArgumentNullException(nameof(connectionString));
            this._logger = logger ?? throw new ArgumentNullException(nameof(logger));
            this._userTable = userTable ?? throw new ArgumentNullException(nameof(userTable));
            this._userFunctionId = !string.IsNullOrEmpty(userFunctionId) ? userFunctionId : throw new ArgumentNullException(nameof(userFunctionId));
            this._userDefinedLeasesTableName = userDefinedLeasesTableName;
        }