Endjin.Assembly.ChangeDetection.Infrastructure.TracerConfig.Reset C# (CSharp) Method

Reset() public static method

Re/Set trace configuration in a thread safe way by shutting down the already existing listeners and then put the new config into place.
public static Reset ( string cfg ) : string
cfg string /// The trace string format is of the form OutputDevice;TypeFilter MessageFilter; TypeFilter /// MessageFilter; ... ///
return string
        public static string Reset(string cfg)
        {
            return Reset(cfg, true);
        }

Same methods

TracerConfig::Reset ( string cfg, bool bClearEvents ) : string