EventSchemaTraceListener Constructor (String, String, Int32, TraceLogRetentionOption, Int64, Int32)
Initializes a new instance of the EventSchemaTraceListener class with the specified name and specified buffer size, using the specified file with the specified log retention policy, maximum size, and file count as the recipient of the debugging and tracing output.
Assembly: System.Core (in System.Core.dll)
public EventSchemaTraceListener( string fileName, string name, int bufferSize, TraceLogRetentionOption logRetentionOption, long maximumFileSize, int maximumNumberOfFiles )
Parameters
- fileName
- Type: System.String
The path for the log file.
- name
- Type: System.String
The name of the listener.
- bufferSize
- Type: System.Int32
The size of the output buffer, in bytes.
- logRetentionOption
- Type: System.Diagnostics.TraceLogRetentionOption
One of the TraceLogRetentionOption values.
- maximumFileSize
- Type: System.Int64
The maximum file size, in bytes.
- maximumNumberOfFiles
- Type: System.Int32
The maximum number of output log files.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException |
maximumFileSize is less than bufferSize. |
| ArgumentOutOfRangeException |
maximumFileSize is a negative number. |
| ArgumentOutOfRangeException |
maximumNumberOfFiles is less than 1, and logRetentionOption is LimitedSequentialFiles. |
| ArgumentOutOfRangeException |
maximumNumberOfFiles is less than 2, and logRetentionOption is LimitedCircularFiles. |
The following code example demonstrates how to use the EventSchemaTraceListener constructor. This code example is part of a larger example that is provided for the EventSchemaTraceListener class.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.