System.Data.Entity.Infrastructure.Interception.DatabaseLogger.IDbConfigurationInterceptor C# (CSharp) Method

IDbConfigurationInterceptor() private method

private IDbConfigurationInterceptor ( DbConfigurationLoadedEventArgs loadedEventArgs, System.Data.Entity.Infrastructure.Interception.DbConfigurationInterceptionContext interceptionContext ) : void
loadedEventArgs DbConfigurationLoadedEventArgs
interceptionContext System.Data.Entity.Infrastructure.Interception.DbConfigurationInterceptionContext
return void
        void IDbConfigurationInterceptor.Loaded(
            DbConfigurationLoadedEventArgs loadedEventArgs,
            DbConfigurationInterceptionContext interceptionContext)
        {
            Check.NotNull(loadedEventArgs, "loadedEventArgs");
            Check.NotNull(interceptionContext, "interceptionContext");

            StartLogging(loadedEventArgs.DependencyResolver);
        }