This documentation is archived and is not being maintained.
Trace.TraceInformation Method (String, Object[])
Visual Studio 2010
Writes an informational message to the trace listeners in the Listeners collection using the specified array of objects and formatting information.
Assembly: System (in System.dll)
[ConditionalAttribute("TRACE")] public static void TraceInformation( string format, params Object[] args )
Parameters
- format
- Type: System.String
A format string that contains zero or more format items, which correspond to objects in the args array.
- args
- Type: System.Object[]
An object array containing zero or more objects to format.
TraceInformation calls the TraceEvent methods in the trace listeners with the trace event type Information, passing the message content as an object array with formatting information. See the Format method for more information about the format and args parameters.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, 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.
Show: