ELMAH - . , ELMAH , ErrorLog, . , SqlErrorLog.
,
ServiceProviderQueryHandler . :
public delegate IServiceProvider ServiceProviderQueryHandler(object context);
, IServiceProvider. , .NET Framework. . System.ComponentModel.Design.ServiceContainer. GetService ErrorLog, , , SqlErrorLog, , . :
var parent = ServiceCenter.Current;
ServiceCenter.Current = context => {
var container = new ServiceContainer(parent(context));
var connectionSettings = ConfigurationManager.ConnectionStrings["FOOBAR"];
var connectionString = Decrypt(connectionSettings.ConnectionString);
var log = new SqlErrorLog(connectionString);
container.AddService(typeof(ErrorLog), log);
return container;
} ;
. / ,
, . ELMAH , ServiceCenter.Current - , , .
, , , , .
1.2 - . ELMAH ELMAH .