예제 #1
0
 /// <summary>
 /// Creates an instance of the sink.
 /// </summary>        
 public EmailSink()
     : base()
 {
     this.defaultSink = new DefaultLogDestination();
 }
예제 #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();
 }
예제 #3
0
 /// <summary>
 /// Create an instance of a FlatFileSink.
 /// </summary>        
 public FlatFileSink()
 {
     this.defaultSink = new DefaultLogDestination();
 }
예제 #4
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public MsmqSink()
 {
     this.defaultSink = new DefaultLogDestination();
 }
예제 #5
0
파일: WSSink.cs 프로젝트: bnantz/NCS-V1-1
 /// <summary>
 /// Create an instance of a FlatFileSink.
 /// </summary>        
 public WSSink()
 {
     this.defaultSink = new DefaultLogDestination();
 }
예제 #6
0
 /// <summary>
 /// Creates an instance of the sink.
 /// </summary>
 public EmailSink() : base()
 {
     this.defaultSink = new DefaultLogDestination();
 }
예제 #7
0
 /// <summary>
 /// Create an instance of a RollingFlatFileSink.
 /// </summary>
 public RollingFlatFileSink()
 {
     this.defaultSink = new DefaultLogDestination();
 }