CK.Monitoring.MonitorBinaryFileOutput.MonitorBinaryFileOutput C# (CSharp) Method

MonitorBinaryFileOutput() public method

Initializes a new file for ILogEntry issued from a specific monitor: the final file name is based on FileUtil.FileNameUniqueTimeUtcFormat with a "-{XXX...XXX}.ckmon" suffix where {XXX...XXX} is the unique identifier (Guid with the B format - 32 digits separated by hyphens, enclosed in braces) of the monitor. You must call Initialize before actually using this object.
public MonitorBinaryFileOutput ( string configuredPath, System.Guid monitorId, int maxCountPerFile, bool useGzipCompression ) : System
configuredPath string The path. Can be absolute. When relative, it will be under that must be set.
monitorId System.Guid Monitor identifier.
maxCountPerFile int Maximum number of entries per file. Must be greater than 1.
useGzipCompression bool True to gzip the file.
return System
        public MonitorBinaryFileOutput( string configuredPath, Guid monitorId, int maxCountPerFile, bool useGzipCompression )
            : base( configuredPath, '-' + monitorId.ToString( "B" ) + ".ckmon", maxCountPerFile, useGzipCompression )
        {
        }

Same methods

MonitorBinaryFileOutput::MonitorBinaryFileOutput ( string configuredPath, int maxCountPerFile, bool useGzipCompression ) : System