コード例 #1
0
 /// <summary>
 /// Logs query data to a data store
 /// </summary>
 public QueryLogger(
     IOptionsSnapshot <QueryLoggerSettings> settings,
     IHttpContextData context,
     ILogStore store)
 {
     _settings = settings;
     _context  = context;
     _store    = store;
 }
コード例 #2
0
 public QueryLoggerTests()
 {
     _context = new MockHttpContextData();
 }