Esempio n. 1
0
 /// <summary>
 /// Creates an instance of the sink.
 /// </summary>        
 public EmailSink()
     : base()
 {
     this.defaultSink = new DefaultLogDestination();
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of <see cref="LogDistributor"></see>
 /// </summary>
 /// <param name="configurationContext"><see cref="ConfigurationContext"></see> used to initialize this instance</param>
 public LogDistributor(ConfigurationContext configurationContext)
 {
     this.loggingConfigurationView = new LoggingConfigurationView(configurationContext);
     this.events = new DistributorEvents();
     this.defaulLogSink = new DefaultLogDestination();
 }
Esempio n. 3
0
 /// <summary>
 /// Create an instance of a FlatFileSink.
 /// </summary>        
 public FlatFileSink()
 {
     this.defaultSink = new DefaultLogDestination();
 }
Esempio n. 4
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public MsmqSink()
 {
     this.defaultSink = new DefaultLogDestination();
 }
Esempio n. 5
0
 /// <summary>
 /// Create an instance of a FlatFileSink.
 /// </summary>        
 public WSSink()
 {
     this.defaultSink = new DefaultLogDestination();
 }
Esempio n. 6
0
 /// <summary>
 /// Creates an instance of the sink.
 /// </summary>
 public EmailSink() : base()
 {
     this.defaultSink = new DefaultLogDestination();
 }
Esempio n. 7
0
 /// <summary>
 /// Create an instance of a RollingFlatFileSink.
 /// </summary>
 public RollingFlatFileSink()
 {
     this.defaultSink = new DefaultLogDestination();
 }