コード例 #1
0
 public LoggerProxyOptions(Guid loggerProviderId)
 {
     Category              = "UNCATEGORIZED";
     LoggerProviderId      = LoggerProviderId;
     StateFormatterFactory = new ProxyStateFormatterFactory();
 }
コード例 #2
0
 public LoggerProxyOptions WithStateFormatterFactory(IStateFormatterFactory stateFormatterFactory)
 {
     StateFormatterFactory = stateFormatterFactory;
     return(this);
 }
コード例 #3
0
 public LoggerProxyOptions()
 {
     Category = "UNCATEGORIZED";
     StateFormatterFactory = new ProxyStateFormatterFactory();
 }