123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>Common.Logging.Core</name>
- </assembly>
- <members>
- <member name="T:Common.Logging.Factory.StringFormatMethodAttribute">
- <summary>
- Indicates that the marked method builds string by format pattern and (optional) arguments.
- Parameter, which contains format string, should be given in constructor. The format string
- should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/>-like form
- </summary>
- <example><code>
- [StringFormatMethod("message")]
- public void ShowError(string message, params object[] args) { /* do something */ }
- public void Foo() {
- ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
- }
- </code></example>
- </member>
- <member name="M:Common.Logging.Factory.StringFormatMethodAttribute.#ctor(System.String)">
- <param name="formatParameterName">
- Specifies which parameter of an annotated method should be treated as format-string
- </param>
- </member>
- <member name="P:Common.Logging.Factory.StringFormatMethodAttribute.FormatParameterName">
- <summary>
- The name of the string parameter being formatted
- </summary>
- </member>
- <member name="T:Common.Logging.FormatMessageHandler">
- <summary>
- The type of method that is passed into e.g. <see cref="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})"/>
- and allows the callback method to "submit" it's message to the underlying output system.
- </summary>
- <param name="format">the format argument as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
- <param name="args">the argument list as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
- <seealso cref="T:Common.Logging.ILog"/>
- <author>Erich Eichinger</author>
- </member>
- <member name="T:Common.Logging.IConfigurationReader">
- <summary>
- Interface for basic operations to read .NET application configuration information.
- </summary>
- <remarks>Provides a simple abstraction to handle BCL API differences between .NET 1.x and 2.0. Also
- useful for testing scenarios.</remarks>
- <author>Mark Pollack</author>
- </member>
- <member name="M:Common.Logging.IConfigurationReader.GetSection(System.String)">
- <summary>
- Parses the configuration section and returns the resulting object.
- </summary>
- <remarks>
- <p>
- Primary purpose of this method is to allow us to parse and
- load configuration sections using the same API regardless
- of the .NET framework version.
- </p>
-
- See also <c>System.Configuration.ConfigurationManager</c>
- </remarks>
- <param name="sectionName">Name of the configuration section.</param>
- <returns>Object created by a corresponding IConfigurationSectionHandler.</returns>
- </member>
- <member name="T:Common.Logging.ILog">
- <summary>
- A simple logging interface abstracting logging APIs.
- </summary>
- <remarks>
- <para>
- Implementations should defer calling a message's <see cref="M:System.Object.ToString"/> until the message really needs
- to be logged to avoid performance penalties.
- </para>
- <para>
- Each <see cref="T:Common.Logging.ILog"/> log method offers to pass in a <see cref="T:System.Action`1"/> instead of the actual message.
- Using this style has the advantage to defer possibly expensive message argument evaluation and formatting (and formatting arguments!) until the message gets
- actually logged. If the message is not logged at all (e.g. due to <see cref="T:Common.Logging.LogLevel"/> settings),
- you won't have to pay the peformance penalty of creating the message.
- </para>
- </remarks>
- <example>
- The example below demonstrates using callback style for creating the message, where the call to the
- <see cref="M:System.Random.NextDouble"/> and the underlying <see cref="M:System.String.Format(System.String,System.Object[])"/> only happens, if level <see cref="F:Common.Logging.LogLevel.Debug"/> is enabled:
- <code>
- Log.Debug( m=>m("result is {0}", random.NextDouble()) );
- Log.Debug(delegate(m) { m("result is {0}", random.NextDouble()); });
- </code>
- </example>
- <seealso cref="T:System.Action`1"/>
- <author>Mark Pollack</author>
- <author>Bruno Baia</author>
- <author>Erich Eichinger</author>
- </member>
- <member name="M:Common.Logging.ILog.Trace(System.Object)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
- </summary>
- <param name="message">The message object to log.</param>
- </member>
- <member name="M:Common.Logging.ILog.Trace(System.Object,System.Exception)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level including
- the stack trace of the <see cref="T:System.Exception"/> passed
- as a parameter.
- </summary>
- <param name="message">The message object to log.</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.Debug(System.Object)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
- </summary>
- <param name="message">The message object to log.</param>
- </member>
- <member name="M:Common.Logging.ILog.Debug(System.Object,System.Exception)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level including
- the stack trace of the <see cref="T:System.Exception"/> passed
- as a parameter.
- </summary>
- <param name="message">The message object to log.</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack Debug.</param>
- </member>
- <member name="M:Common.Logging.ILog.Info(System.Object)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
- </summary>
- <param name="message">The message object to log.</param>
- </member>
- <member name="M:Common.Logging.ILog.Info(System.Object,System.Exception)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level including
- the stack trace of the <see cref="T:System.Exception"/> passed
- as a parameter.
- </summary>
- <param name="message">The message object to log.</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack Info.</param>
- </member>
- <member name="M:Common.Logging.ILog.Warn(System.Object)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
- </summary>
- <param name="message">The message object to log.</param>
- </member>
- <member name="M:Common.Logging.ILog.Warn(System.Object,System.Exception)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level including
- the stack trace of the <see cref="T:System.Exception"/> passed
- as a parameter.
- </summary>
- <param name="message">The message object to log.</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack Warn.</param>
- </member>
- <member name="M:Common.Logging.ILog.Error(System.Object)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
- </summary>
- <param name="message">The message object to log.</param>
- </member>
- <member name="M:Common.Logging.ILog.Error(System.Object,System.Exception)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level including
- the stack trace of the <see cref="T:System.Exception"/> passed
- as a parameter.
- </summary>
- <param name="message">The message object to log.</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack Error.</param>
- </member>
- <member name="M:Common.Logging.ILog.Fatal(System.Object)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
- </summary>
- <param name="message">The message object to log.</param>
- </member>
- <member name="M:Common.Logging.ILog.Fatal(System.Object,System.Exception)">
- <summary>
- Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level including
- the stack trace of the <see cref="T:System.Exception"/> passed
- as a parameter.
- </summary>
- <param name="message">The message object to log.</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
- </summary>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args">the list of format arguments</param>
- </member>
- <member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
- </summary>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
- <param name="exception">The exception to log.</param>
- <param name="args"></param>
- </member>
- <member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack trace.</param>
- </member>
- <member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- </member>
- <member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
- <summary>
- Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
- </summary>
- <remarks>
- Using this method avoids the cost of creating a message and evaluating message arguments
- that probably won't be logged due to loglevel settings.
- </remarks>
- <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
- <param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
- <param name="exception">The exception to log, including its stack Fatal.</param>
- </member>
- <member name="P:Common.Logging.ILog.IsTraceEnabled">
- <summary>
- Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
- </summary>
- </member>
- <member name="P:Common.Logging.ILog.IsDebugEnabled">
- <summary>
- Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
- </summary>
- </member>
- <member name="P:Common.Logging.ILog.IsErrorEnabled">
- <summary>
- Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Error"/> level.
- </summary>
- </member>
- <member name="P:Common.Logging.ILog.IsFatalEnabled">
- <summary>
- Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
- </summary>
- </member>
- <member name="P:Common.Logging.ILog.IsInfoEnabled">
- <summary>
- Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Info"/> level.
- </summary>
- </member>
- <member name="P:Common.Logging.ILog.IsWarnEnabled">
- <summary>
- Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
- </summary>
- </member>
- <member name="P:Common.Logging.ILog.GlobalVariablesContext">
- <summary>
- Returns the global context for variables
- </summary>
- </member>
- <member name="P:Common.Logging.ILog.ThreadVariablesContext">
- <summary>
- Returns the thread-specific context for variables
- </summary>
- </member>
- <member name="P:Common.Logging.ILog.NestedThreadVariablesContext">
- <summary>
- Returns the thread-specific context for nested variables (for NDC, eg.)
- </summary>
- </member>
- <member name="T:Common.Logging.ILoggerFactoryAdapter">
- <summary>
- LoggerFactoryAdapter interface is used internally by LogManager
- Only developers wishing to write new Common.Logging adapters need to
- worry about this interface.
- </summary>
- <author>Gilles Bayon</author>
- </member>
- <member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)">
- <summary>
- Get a ILog instance by type.
- </summary>
- <param name="type">The type to use for the logger</param>
- <returns></returns>
- </member>
- <member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)">
- <summary>
- Get a ILog instance by key.
- </summary>
- <param name="key">The key of the logger</param>
- <returns></returns>
- </member>
- <member name="T:Common.Logging.ILogManager">
- <summary>
- Interface for LogManager
- </summary>
- </member>
- <member name="P:Common.Logging.ILogManager.COMMON_LOGGING_SECTION">
- <summary>
- The key of the default configuration section to read settings from.
- </summary>
- <remarks>
- You can always change the source of your configuration settings by setting another <see cref="T:Common.Logging.IConfigurationReader"/> instance
- on <see cref="P:Common.Logging.ILogManager.ConfigurationReader"/>.
- </remarks>
- </member>
- <member name="M:Common.Logging.ILogManager.Reset">
- <summary>
- Reset the <see cref="N:Common.Logging" /> infrastructure to its default settings. This means, that configuration settings
- will be re-read from section <c><common/logging></c> of your <c>app.config</c>.
- </summary>
- <remarks>
- This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
- <b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
- Resetting LogManager only affects new instances being handed out.
- </remarks>
- </member>
- <member name="M:Common.Logging.ILogManager.Reset(Common.Logging.IConfigurationReader)">
- <summary>
- Reset the <see cref="N:Common.Logging" /> infrastructure to its default settings. This means, that configuration settings
- will be re-read from section <c><common/logging></c> of your <c>app.config</c>.
- </summary>
- <remarks>
- This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
- <b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
- Resetting LogManager only affects new instances being handed out.
- </remarks>
- <param name="reader">
- the <see cref="T:Common.Logging.IConfigurationReader"/> instance to obtain settings for
- re-initializing the LogManager.
- </param>
- </member>
- <member name="P:Common.Logging.ILogManager.ConfigurationReader">
- <summary>
- Gets the configuration reader used to initialize the LogManager.
- </summary>
- <remarks>Primarily used for testing purposes but maybe useful to obtain configuration
- information from some place other than the .NET application configuration file.</remarks>
- <value>The configuration reader.</value>
- </member>
- <member name="P:Common.Logging.ILogManager.Adapter">
- <summary>
- Gets or sets the adapter.
- </summary>
- <value>The adapter.</value>
- </member>
- <member name="M:Common.Logging.ILogManager.GetCurrentClassLogger">
- <summary>
- Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
- on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the type of the calling class.
- </summary>
- <remarks>
- This method needs to inspect the StackTrace in order to determine the calling
- class. This of course comes with a performance penalty, thus you shouldn't call it too
- often in your application.
- </remarks>
- <seealso cref="M:Common.Logging.ILogManager.GetLogger(System.Type)"/>
- <returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
- </member>
- <member name="M:Common.Logging.ILogManager.GetLogger``1">
- <summary>
- Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
- on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
- </summary>
- <returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
- </member>
- <member name="M:Common.Logging.ILogManager.GetLogger(System.Type)">
- <summary>
- Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
- on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
- </summary>
- <param name="type">The type.</param>
- <returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
- </member>
- <member name="M:Common.Logging.ILogManager.GetLogger(System.String)">
- <summary>
- Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)"/>
- on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified key.
- </summary>
- <param name="key">The key.</param>
- <returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
- </member>
- <member name="T:Common.Logging.INestedVariablesContext">
- <summary>
- A context for logger variables
- </summary>
- </member>
- <member name="M:Common.Logging.INestedVariablesContext.Push(System.String)">
- <summary>Pushes a new context message into this stack.</summary>
- <param name="text">The new context message text.</param>
- <returns>
- An <see cref="T:System.IDisposable" /> that can be used to clean up the context stack.
- </returns>
- </member>
- <member name="M:Common.Logging.INestedVariablesContext.Pop">
- <summary>Removes the top context from this stack.</summary>
- <returns>The message in the context that was removed from the top of this stack.</returns>
- </member>
- <member name="M:Common.Logging.INestedVariablesContext.Clear">
- <summary>
- Remove all items from nested context
- </summary>
- </member>
- <member name="P:Common.Logging.INestedVariablesContext.HasItems">
- <summary>
- Returns true if there is at least one item in the nested context; false, if empty
- </summary>
- </member>
- <member name="T:Common.Logging.IVariablesContext">
- <summary>
- A context for logger variables
- </summary>
- </member>
- <member name="M:Common.Logging.IVariablesContext.Set(System.String,System.Object)">
- <summary>
- Sets the value of a new or existing variable within the context
- </summary>
- <param name="key">The key of the variable that is to be added</param>
- <param name="value">The value to add</param>
- </member>
- <member name="M:Common.Logging.IVariablesContext.Get(System.String)">
- <summary>
- Gets the value of a variable within the context
- </summary>
- <param name="key">The key of the variable to get</param>
- <returns>The value or null if not found</returns>
- </member>
- <member name="M:Common.Logging.IVariablesContext.Contains(System.String)">
- <summary>
- Checks if a variable is set within the context
- </summary>
- <param name="key">The key of the variable to check for</param>
- <returns>True if the variable is set</returns>
- </member>
- <member name="M:Common.Logging.IVariablesContext.Remove(System.String)">
- <summary>
- Removes a variable from the context by key
- </summary>
- <param name="key">The key of the variable to remove</param>
- </member>
- <member name="M:Common.Logging.IVariablesContext.Clear">
- <summary>
- Clears the context variables
- </summary>
- </member>
- <member name="T:Common.Logging.LogLevel">
- <summary>
- The 7 possible logging levels
- </summary>
- <author>Gilles Bayon</author>
- </member>
- <member name="F:Common.Logging.LogLevel.All">
- <summary>
- All logging levels
- </summary>
- </member>
- <member name="F:Common.Logging.LogLevel.Trace">
- <summary>
- A trace logging level
- </summary>
- </member>
- <member name="F:Common.Logging.LogLevel.Debug">
- <summary>
- A debug logging level
- </summary>
- </member>
- <member name="F:Common.Logging.LogLevel.Info">
- <summary>
- A info logging level
- </summary>
- </member>
- <member name="F:Common.Logging.LogLevel.Warn">
- <summary>
- A warn logging level
- </summary>
- </member>
- <member name="F:Common.Logging.LogLevel.Error">
- <summary>
- An error logging level
- </summary>
- </member>
- <member name="F:Common.Logging.LogLevel.Fatal">
- <summary>
- A fatal logging level
- </summary>
- </member>
- <member name="F:Common.Logging.LogLevel.Off">
- <summary>
- Do not log anything.
- </summary>
- </member>
- </members>
- </doc>
|