CodeTV.ChannelAnalogic.NeedToRebuildTheGraph C# (CSharp) Method

NeedToRebuildTheGraph() public method

public NeedToRebuildTheGraph ( ChannelTV newChannel ) : bool
newChannel ChannelTV
return bool
        public override bool NeedToRebuildTheGraph(ChannelTV newChannel)
        {
            return !(newChannel is ChannelAnalogic) ||
                base.NeedToRebuildTheGraph(newChannel) ||
                (newChannel as ChannelAnalogic).VideoCaptureDeviceName != VideoCaptureDeviceName ||
                (newChannel as ChannelAnalogic).AudioCaptureDeviceName != AudioCaptureDeviceName ||
                !(newChannel as ChannelAnalogic).FormatOfCapture.Equals(FormatOfCapture);
        }