Exemplo n.º 1
0
        public TelemetrySink(ITelemetryChannel channel, ITelemetryProcessChain processChain, bool isConfigured = false)
        {
            if (channel == null)
            {
                throw new ArgumentNullException("channel");
            }
            this.Channel = channel;

            if (processChain == null)
            {
                throw new ArgumentNullException("processChain");
            }
            this.ProcessChain = processChain;

            this.IsConfigured = isConfigured;
        }
Exemplo n.º 2
0
 public TelemetrySink(ITelemetryChannel channel, ITelemetryProcessChain processChain) : this(channel, processChain, false)
 {
 }