Exemple #1
0
 /// <summary>
 /// Sets a new EndPointSink for the channel
 /// </summary>
 /// <param name="epSink">New EndPointSink to use</param>
 protected void SetEndPointSink(IEndPointSink epSink)
 {
     _endPointSink = epSink;
 }
Exemple #2
0
 /// <summary>
 /// Constructs a new ProcessChannelBase using the specified EndPointSink object
 /// </summary>
 /// <param name="endPointSink"></param>
 protected ProcessChannelBase(IEndPointSink endPointSink)
 {
     _sinks        = new SinkCollection();
     _endPointSink = endPointSink;
 }
Exemple #3
0
 /// <summary>
 /// Constructs a new empty ProcessChannelBase
 /// </summary>
 protected ProcessChannelBase()
 {
     _sinks        = new SinkCollection();
     _endPointSink = null;
 }
Exemple #4
0
 /// <summary>
 /// Constructs a new ProcessChannelBase using the specified EndPointSink object
 /// </summary>
 /// <param name="endPointSink"></param>
 protected CustomProcessChannelBase(IEndPointSink endPointSink) : base(endPointSink)
 {
 }