CK.Monitoring.GrandOutputHandlers.HandlerBase.CollectChannelOption C# (CSharp) Method

CollectChannelOption() public method

Enables this handler to interact with any channel to which it belongs. This is called after Initialize and for each channel where this handler appears, before the first call to Handle. Default implementation must be called: sets the minimal filter on the option if the HandlerConfiguration defines it.
public CollectChannelOption ( ChannelOption option ) : void
option ChannelOption
return void
        public virtual void CollectChannelOption( ChannelOption option )
        {
            option.SetMinimalFilter( _minimalFilter );
        }