Author: dpsenner
Date: Mon Sep 3 06:52:19 2012
New Revision: 1380139
URL: http://svn.apache.org/viewvc?rev=1380139&view=rev
Log:
LOG4NET-352 fix documentation cref IDs to resolve ambiguous references
log4net should compile on Mono >2.6 from now on.
Modified:
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs
logging/log4net/trunk/src/Appender/AnsiColorTerminalAppender.cs
logging/log4net/trunk/src/Appender/AppenderSkeleton.cs
logging/log4net/trunk/src/Appender/AspNetTraceAppender.cs
logging/log4net/trunk/src/Appender/BufferingAppenderSkeleton.cs
logging/log4net/trunk/src/Appender/ColoredConsoleAppender.cs
logging/log4net/trunk/src/Appender/ConsoleAppender.cs
logging/log4net/trunk/src/Appender/DebugAppender.cs
logging/log4net/trunk/src/Appender/EventLogAppender.cs
logging/log4net/trunk/src/Appender/FileAppender.cs
logging/log4net/trunk/src/Appender/IAppender.cs
logging/log4net/trunk/src/Appender/LocalSyslogAppender.cs
logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs
logging/log4net/trunk/src/Appender/MemoryAppender.cs
logging/log4net/trunk/src/Appender/NetSendAppender.cs
logging/log4net/trunk/src/Appender/RemoteSyslogAppender.cs
logging/log4net/trunk/src/Appender/TextWriterAppender.cs
logging/log4net/trunk/src/Appender/UdpAppender.cs
logging/log4net/trunk/src/Config/BasicConfigurator.cs
logging/log4net/trunk/src/Config/DOMConfigurator.cs
logging/log4net/trunk/src/Config/DOMConfiguratorAttribute.cs
logging/log4net/trunk/src/Config/PluginAttribute.cs
logging/log4net/trunk/src/Config/SecurityContextProviderAttribute.cs
logging/log4net/trunk/src/Config/XmlConfigurator.cs
logging/log4net/trunk/src/Config/XmlConfiguratorAttribute.cs
logging/log4net/trunk/src/Core/CompactRepositorySelector.cs
logging/log4net/trunk/src/Core/DefaultRepositorySelector.cs
logging/log4net/trunk/src/Core/ErrorCode.cs
logging/log4net/trunk/src/Core/ExceptionEvaluator.cs
logging/log4net/trunk/src/Core/IErrorHandler.cs
logging/log4net/trunk/src/Core/IRepositorySelector.cs
logging/log4net/trunk/src/Core/LevelEvaluator.cs
logging/log4net/trunk/src/Core/LevelMap.cs
logging/log4net/trunk/src/Core/LogImpl.cs
logging/log4net/trunk/src/Core/LoggerManager.cs
logging/log4net/trunk/src/Core/LoggingEvent.cs
logging/log4net/trunk/src/DateFormatter/SimpleDateFormatter.cs
logging/log4net/trunk/src/Filter/LoggerMatchFilter.cs
logging/log4net/trunk/src/ILog.cs
logging/log4net/trunk/src/Layout/ExceptionLayout.cs
logging/log4net/trunk/src/Layout/ILayout.cs
logging/log4net/trunk/src/Layout/LayoutSkeleton.cs
logging/log4net/trunk/src/Layout/Pattern/DatePatternConverter.cs
logging/log4net/trunk/src/Layout/PatternLayout.cs
logging/log4net/trunk/src/LogManager.cs
logging/log4net/trunk/src/ObjectRenderer/DefaultRenderer.cs
logging/log4net/trunk/src/ObjectRenderer/IObjectRenderer.cs
logging/log4net/trunk/src/ObjectRenderer/RendererMap.cs
logging/log4net/trunk/src/Plugin/RemoteLoggingServerPlugin.cs
logging/log4net/trunk/src/Repository/Hierarchy/Hierarchy.cs
logging/log4net/trunk/src/Repository/ILoggerRepository.cs
logging/log4net/trunk/src/Repository/LoggerRepositorySkeleton.cs
logging/log4net/trunk/src/Util/NativeError.cs
logging/log4net/trunk/src/Util/PatternString.cs
logging/log4net/trunk/src/Util/PatternStringConverters/DatePatternConverter.cs
logging/log4net/trunk/src/Util/SystemInfo.cs
logging/log4net/trunk/src/Util/TypeConverters/ConverterRegistry.cs
logging/log4net/trunk/src/Util/TypeConverters/EncodingConverter.cs
logging/log4net/trunk/src/Util/TypeConverters/PatternStringConverter.cs
logging/log4net/trunk/src/Util/TypeConverters/TypeConverter.cs
Modified:
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
---
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs
(original)
+++
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs
Mon Sep 3 06:52:19 2012
@@ -201,7 +201,7 @@ namespace log4net.Ext.EventID
}
/// <summary>
- /// Shorthand for <see cref="LogManager.GetLogger(string)"/>.
+ /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
/// </summary>
/// <remarks>
/// Get the logger for the fully qualified name of the type
specified.
@@ -215,7 +215,7 @@ namespace log4net.Ext.EventID
}
/// <summary>
- /// Shorthand for <see cref="LogManager.GetLogger(string)"/>.
+ /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
/// </summary>
/// <remarks>
/// Get the logger for the fully qualified name of the type
specified.
@@ -230,7 +230,7 @@ namespace log4net.Ext.EventID
}
/// <summary>
- /// Shorthand for <see cref="LogManager.GetLogger(string)"/>.
+ /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
/// </summary>
/// <remarks>
/// Get the logger for the fully qualified name of the type
specified.
Modified:
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
---
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs
(original)
+++
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs
Mon Sep 3 06:52:19 2012
@@ -204,7 +204,7 @@ namespace log4net.Ext.MarshalByRef
}
/// <summary>
- /// Shorthand for <see cref="LogManager.GetLogger(string)"/>.
+ /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
/// </summary>
/// <remarks>
/// Get the logger for the fully qualified name of the type
specified.
@@ -218,7 +218,7 @@ namespace log4net.Ext.MarshalByRef
}
/// <summary>
- /// Shorthand for <see cref="LogManager.GetLogger(string)"/>.
+ /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
/// </summary>
/// <remarks>
/// Get the logger for the fully qualified name of the type
specified.
@@ -233,7 +233,7 @@ namespace log4net.Ext.MarshalByRef
}
/// <summary>
- /// Shorthand for <see cref="LogManager.GetLogger(string)"/>.
+ /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
/// </summary>
/// <remarks>
/// Get the logger for the fully qualified name of the type
specified.
Modified:
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
---
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs
(original)
+++
logging/log4net/trunk/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs
Mon Sep 3 06:52:19 2012
@@ -201,7 +201,7 @@ namespace log4net.Ext.Trace
}
/// <summary>
- /// Shorthand for <see cref="LogManager.GetLogger(string)"/>.
+ /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
/// </summary>
/// <remarks>
/// Get the logger for the fully qualified name of the type
specified.
@@ -215,7 +215,7 @@ namespace log4net.Ext.Trace
}
/// <summary>
- /// Shorthand for <see cref="LogManager.GetLogger(string)"/>.
+ /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
/// </summary>
/// <remarks>
/// Get the logger for the fully qualified name of the type
specified.
@@ -230,7 +230,7 @@ namespace log4net.Ext.Trace
}
/// <summary>
- /// Shorthand for <see cref="LogManager.GetLogger(string)"/>.
+ /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
/// </summary>
/// <remarks>
/// Get the logger for the fully qualified name of the type
specified.
Modified: logging/log4net/trunk/src/Appender/AnsiColorTerminalAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/AnsiColorTerminalAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/AnsiColorTerminalAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/AnsiColorTerminalAppender.cs Mon Sep 3
06:52:19 2012
@@ -285,7 +285,7 @@ namespace log4net.Appender
#region Override implementation of AppenderSkeleton
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
/// <remarks>
Modified: logging/log4net/trunk/src/Appender/AppenderSkeleton.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/AppenderSkeleton.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/AppenderSkeleton.cs (original)
+++ logging/log4net/trunk/src/Appender/AppenderSkeleton.cs Mon Sep 3 06:52:19
2012
@@ -38,7 +38,7 @@ namespace log4net.Appender
/// </para>
/// <para>
/// Appenders can also implement the <see cref="IOptionHandler"/>
interface. Therefore
- /// they would require that the <see
cref="IOptionHandler.ActivateOptions()"/> method
+ /// they would require that the <see
cref="M:IOptionHandler.ActivateOptions()"/> method
/// be called after the appenders properties have been configured.
/// </para>
/// </remarks>
@@ -249,13 +249,13 @@ namespace log4net.Appender
/// <summary>
/// Performs threshold checks and invokes filters before
/// delegating actual logging to the subclasses specific
- /// <see cref="Append(LoggingEvent)"/> method.
+ /// <see cref="M:Append(LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
/// <remarks>
/// <para>
/// This method cannot be overridden by derived classes. A
- /// derived class should override the <see
cref="Append(LoggingEvent)"/> method
+ /// derived class should override the <see
cref="M:Append(LoggingEvent)"/> method
/// which is called by this method.
/// </para>
/// <para>
@@ -277,14 +277,14 @@ namespace log4net.Appender
/// </item>
/// <item>
/// <description>
- /// Calls <see cref="PreAppendCheck()"/>
and checks that
+ /// Calls <see cref="M:PreAppendCheck()"/>
and checks that
/// it returns <c>true</c>.</description>
/// </item>
/// </list>
/// </para>
/// <para>
/// If all of the above steps succeed then the <paramref
name="loggingEvent"/>
- /// will be passed to the abstract <see
cref="Append(LoggingEvent)"/> method.
+ /// will be passed to the abstract <see
cref="M:Append(LoggingEvent)"/> method.
/// </para>
/// </remarks>
public void DoAppend(LoggingEvent loggingEvent)
@@ -346,13 +346,13 @@ namespace log4net.Appender
/// <summary>
/// Performs threshold checks and invokes filters before
/// delegating actual logging to the subclasses specific
- /// <see cref="Append(LoggingEvent[])"/> method.
+ /// <see cref="M:Append(LoggingEvent[])"/> method.
/// </summary>
/// <param name="loggingEvents">The array of events to
log.</param>
/// <remarks>
/// <para>
/// This method cannot be overridden by derived classes. A
- /// derived class should override the <see
cref="Append(LoggingEvent[])"/> method
+ /// derived class should override the <see
cref="M:Append(LoggingEvent[])"/> method
/// which is called by this method.
/// </para>
/// <para>
@@ -374,14 +374,14 @@ namespace log4net.Appender
/// </item>
/// <item>
/// <description>
- /// Calls <see cref="PreAppendCheck()"/>
and checks that
+ /// Calls <see cref="M:PreAppendCheck()"/>
and checks that
/// it returns <c>true</c>.</description>
/// </item>
/// </list>
/// </para>
/// <para>
/// If all of the above steps succeed then the <paramref
name="loggingEvents"/>
- /// will be passed to the <see cref="Append(LoggingEvent[])"/>
method.
+ /// will be passed to the <see
cref="M:Append(LoggingEvent[])"/> method.
/// </para>
/// </remarks>
public void DoAppend(LoggingEvent[] loggingEvents)
@@ -604,12 +604,12 @@ namespace log4net.Appender
/// A subclass must implement this method to perform
/// logging of the <paramref name="loggingEvent"/>.
/// </para>
- /// <para>This method will be called by <see
cref="DoAppend(LoggingEvent)"/>
+ /// <para>This method will be called by <see
cref="M:DoAppend(LoggingEvent)"/>
/// if all the conditions listed for that method are met.
/// </para>
/// <para>
/// To restrict the logging of events in the appender
- /// override the <see cref="PreAppendCheck()"/> method.
+ /// override the <see cref="M:PreAppendCheck()"/> method.
/// </para>
/// </remarks>
abstract protected void Append(LoggingEvent loggingEvent);
@@ -620,12 +620,12 @@ namespace log4net.Appender
/// <param name="loggingEvents">the array of logging
events</param>
/// <remarks>
/// <para>
- /// This base class implementation calls the <see
cref="Append(LoggingEvent)"/>
+ /// This base class implementation calls the <see
cref="M:Append(LoggingEvent)"/>
/// method for each element in the bulk array.
/// </para>
/// <para>
/// A sub class that can better process a bulk array of events
should
- /// override this method in addition to <see
cref="Append(LoggingEvent)"/>.
+ /// override this method in addition to <see
cref="M:Append(LoggingEvent)"/>.
/// </para>
/// </remarks>
virtual protected void Append(LoggingEvent[] loggingEvents)
@@ -637,23 +637,23 @@ namespace log4net.Appender
}
/// <summary>
- /// Called before <see cref="Append(LoggingEvent)"/> as a
precondition.
+ /// Called before <see cref="M:Append(LoggingEvent)"/> as a
precondition.
/// </summary>
/// <remarks>
/// <para>
- /// This method is called by <see
cref="DoAppend(LoggingEvent)"/>
- /// before the call to the abstract <see
cref="Append(LoggingEvent)"/> method.
+ /// This method is called by <see
cref="M:DoAppend(LoggingEvent)"/>
+ /// before the call to the abstract <see
cref="M:Append(LoggingEvent)"/> method.
/// </para>
/// <para>
/// This method can be overridden in a subclass to extend the
checks
- /// made before the event is passed to the <see
cref="Append(LoggingEvent)"/> method.
+ /// made before the event is passed to the <see
cref="M:Append(LoggingEvent)"/> method.
/// </para>
/// <para>
/// A subclass should ensure that they delegate this call to
/// this base class if it is overridden.
/// </para>
/// </remarks>
- /// <returns><c>true</c> if the call to <see
cref="Append(LoggingEvent)"/> should proceed.</returns>
+ /// <returns><c>true</c> if the call to <see
cref="M:Append(LoggingEvent)"/> should proceed.</returns>
virtual protected bool PreAppendCheck()
{
if ((m_layout == null) && RequiresLayout)
@@ -683,7 +683,7 @@ namespace log4net.Appender
/// </para>
/// <para>
/// Where possible use the alternative version of this method
- /// <see cref="RenderLoggingEvent(TextWriter,LoggingEvent)"/>.
+ /// <see cref="M:RenderLoggingEvent(TextWriter,LoggingEvent)"/>.
/// That method streams the rendering onto an existing Writer
/// which can give better performance if the caller already has
/// a <see cref="TextWriter"/> open and ready for writing.
@@ -724,9 +724,9 @@ namespace log4net.Appender
/// will append the exception text to the rendered string.
/// </para>
/// <para>
- /// Use this method in preference to <see
cref="RenderLoggingEvent(LoggingEvent)"/>
+ /// Use this method in preference to <see
cref="M:RenderLoggingEvent(LoggingEvent)"/>
/// where possible. If, however, the caller needs to render the
event
- /// to a string then <see
cref="RenderLoggingEvent(LoggingEvent)"/> does
+ /// to a string then <see
cref="M:RenderLoggingEvent(LoggingEvent)"/> does
/// provide an efficient mechanism for doing so.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Appender/AspNetTraceAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/AspNetTraceAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/AspNetTraceAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/AspNetTraceAppender.cs Mon Sep 3
06:52:19 2012
@@ -45,8 +45,8 @@ namespace log4net.Appender
/// whether tracing is displayed to a page, to the trace viewer, or
both.
/// </para>
/// <para>
- /// The logging event is passed to the <see
cref="TraceContext.Write(string)"/> or
- /// <see cref="TraceContext.Warn(string)"/> method depending on the
level of the logging event.
+ /// The logging event is passed to the <see
cref="M:TraceContext.Write(string)"/> or
+ /// <see cref="M:TraceContext.Warn(string)"/> method depending on the
level of the logging event.
/// The event's logger name is the default value for the category
parameter of the Write/Warn method.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Appender/BufferingAppenderSkeleton.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/BufferingAppenderSkeleton.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/BufferingAppenderSkeleton.cs (original)
+++ logging/log4net/trunk/src/Appender/BufferingAppenderSkeleton.cs Mon Sep 3
06:52:19 2012
@@ -37,7 +37,7 @@ namespace log4net.Appender
/// the underlying database in one go.
/// </para>
/// <para>
- /// Subclasses should override the <see
cref="SendBuffer(LoggingEvent[])"/>
+ /// Subclasses should override the <see
cref="M:SendBuffer(LoggingEvent[])"/>
/// method to deliver the buffered events.
/// </para>
/// <para>The BufferingAppenderSkeleton maintains a fixed size cyclic
@@ -47,14 +47,14 @@ namespace log4net.Appender
/// <para>A <see cref="ITriggeringEventEvaluator"/> is used to inspect
/// each event as it arrives in the appender. If the <see
cref="Evaluator"/>
/// triggers, then the current buffer is sent immediately
- /// (see <see cref="SendBuffer(LoggingEvent[])"/>). Otherwise the event
+ /// (see <see cref="M:SendBuffer(LoggingEvent[])"/>). Otherwise the
event
/// is stored in the buffer. For example, an evaluator can be used to
/// deliver the events immediately when an ERROR event arrives.
/// </para>
/// <para>
/// The buffering appender can be configured in a <see cref="Lossy"/>
mode.
/// By default the appender is NOT lossy. When the buffer is full all
- /// the buffered events are sent with <see
cref="SendBuffer(LoggingEvent[])"/>.
+ /// the buffered events are sent with <see
cref="M:SendBuffer(LoggingEvent[])"/>.
/// If the <see cref="Lossy"/> property is set to <c>true</c> then the
/// buffer will not be sent when it is full, and new events arriving
/// in the appender will overwrite the oldest event in the buffer.
@@ -173,7 +173,7 @@ namespace log4net.Appender
/// <para>
/// The evaluator will be called for each event that is
appended to this
/// appender. If the evaluator triggers then the current buffer
will
- /// immediately be sent (see <see
cref="SendBuffer(LoggingEvent[])"/>).
+ /// immediately be sent (see <see
cref="M:SendBuffer(LoggingEvent[])"/>).
/// </para>
/// <para>If <see cref="Lossy"/> is set to <c>true</c> then an
/// <see cref="Evaluator"/> must be specified.</para>
@@ -194,7 +194,7 @@ namespace log4net.Appender
/// <para>
/// The evaluator will be called for each event that is
discarded from this
/// appender. If the evaluator triggers then the current buffer
will immediately
- /// be sent (see <see cref="SendBuffer(LoggingEvent[])"/>).
+ /// be sent (see <see cref="M:SendBuffer(LoggingEvent[])"/>).
/// </para>
/// </remarks>
public ITriggeringEventEvaluator LossyEvaluator
@@ -217,7 +217,7 @@ namespace log4net.Appender
/// event data to be fixed and serialized. This will improve
performance.
/// </para>
/// <para>
- /// See <see cref="LoggingEvent.FixVolatileData(FixFlags)"/>
for more information.
+ /// See <see cref="M:LoggingEvent.FixVolatileData(FixFlags)"/>
for more information.
/// </para>
/// </remarks>
[Obsolete("Use Fix property")]
@@ -412,7 +412,7 @@ namespace log4net.Appender
}
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">the event to log</param>
/// <remarks>
@@ -436,7 +436,7 @@ namespace log4net.Appender
/// </list>
/// <para>
/// Before the event is stored in the buffer it is fixed
- /// (see <see cref="LoggingEvent.FixVolatileData(FixFlags)"/>)
to ensure that
+ /// (see <see
cref="M:LoggingEvent.FixVolatileData(FixFlags)"/>) to ensure that
/// any data referenced by the event will be valid when the
buffer
/// is processed.
/// </para>
@@ -527,7 +527,7 @@ namespace log4net.Appender
/// <param name="buffer">The buffer containing the events that
need to be send.</param>
/// <remarks>
/// <para>
- /// The subclass must override <see
cref="SendBuffer(LoggingEvent[])"/>.
+ /// The subclass must override <see
cref="M:SendBuffer(LoggingEvent[])"/>.
/// </para>
/// </remarks>
virtual protected void SendFromBuffer(LoggingEvent
firstLoggingEvent, CyclicBuffer buffer)
Modified: logging/log4net/trunk/src/Appender/ColoredConsoleAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/ColoredConsoleAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/ColoredConsoleAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/ColoredConsoleAppender.cs Mon Sep 3
06:52:19 2012
@@ -254,7 +254,7 @@ namespace log4net.Appender
#region Override implementation of AppenderSkeleton
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(log4net.Core.LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(log4net.Core.LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
/// <remarks>
Modified: logging/log4net/trunk/src/Appender/ConsoleAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/ConsoleAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/ConsoleAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/ConsoleAppender.cs Mon Sep 3 06:52:19
2012
@@ -137,7 +137,7 @@ namespace log4net.Appender
#region Override implementation of AppenderSkeleton
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
/// <remarks>
Modified: logging/log4net/trunk/src/Appender/DebugAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/DebugAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/DebugAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/DebugAppender.cs Mon Sep 3 06:52:19 2012
@@ -35,7 +35,7 @@ namespace log4net.Appender
/// debug system.
/// </para>
/// <para>
- /// Events are written using the <see
cref="System.Diagnostics.Debug.Write(string,string)"/>
+ /// Events are written using the <see
cref="M:System.Diagnostics.Debug.Write(string,string)"/>
/// method. The event's logger name is passed as the value for the
category name to the Write method.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Appender/EventLogAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/EventLogAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/EventLogAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/EventLogAppender.cs Mon Sep 3 06:52:19
2012
@@ -364,7 +364,7 @@ namespace log4net.Appender
#region Override implementation of AppenderSkeleton
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/>
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/>
/// method.
/// </summary>
/// <param name="loggingEvent">the event to log</param>
Modified: logging/log4net/trunk/src/Appender/FileAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/FileAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/FileAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/FileAppender.cs Mon Sep 3 06:52:19 2012
@@ -1013,7 +1013,7 @@ namespace log4net.Appender
}
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/>
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/>
/// method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
@@ -1042,7 +1042,7 @@ namespace log4net.Appender
}
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent[])"/>
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent[])"/>
/// method.
/// </summary>
/// <param name="loggingEvents">The array of events to
log.</param>
@@ -1255,9 +1255,9 @@ namespace log4net.Appender
/// <param name="fileStream">the file stream that has been
opened for writing</param>
/// <remarks>
/// <para>
- /// This implementation of <see cref="SetQWForFiles(Stream)"/>
creates a <see cref="StreamWriter"/>
+ /// This implementation of <see
cref="M:SetQWForFiles(Stream)"/> creates a <see cref="StreamWriter"/>
/// over the <paramref name="fileStream"/> and passes it to the
- /// <see cref="SetQWForFiles(TextWriter)"/> method.
+ /// <see cref="M:SetQWForFiles(TextWriter)"/> method.
/// </para>
/// <para>
/// This method can be overridden by sub classes that want to
wrap the
Modified: logging/log4net/trunk/src/Appender/IAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/IAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/IAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/IAppender.cs Mon Sep 3 06:52:19 2012
@@ -33,7 +33,7 @@ namespace log4net.Appender
/// </para>
/// <para>
/// Appenders can also implement the <see cref="IOptionHandler"/>
interface. Therefore
- /// they would require that the <see
cref="IOptionHandler.ActivateOptions()"/> method
+ /// they would require that the <see
cref="M:IOptionHandler.ActivateOptions()"/> method
/// be called after the appenders properties have been configured.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Appender/LocalSyslogAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/LocalSyslogAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/LocalSyslogAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/LocalSyslogAppender.cs Mon Sep 3
06:52:19 2012
@@ -367,7 +367,7 @@ namespace log4net.Appender
#region AppenderSkeleton Implementation
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
/// <remarks>
Modified: logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs
(original)
+++ logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs Mon Sep
3 06:52:19 2012
@@ -165,7 +165,7 @@ namespace log4net.Appender
#region Override implementation of AppenderSkeleton
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(log4net.Core.LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(log4net.Core.LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
/// <remarks>
Modified: logging/log4net/trunk/src/Appender/MemoryAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/MemoryAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/MemoryAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/MemoryAppender.cs Mon Sep 3 06:52:19
2012
@@ -37,7 +37,7 @@ namespace log4net.Appender
/// the current list of events that have been appended.
/// </para>
/// <para>
- /// Use the <see cref="Clear()"/> method to clear the
+ /// Use the <see cref="M:Clear()"/> method to clear the
/// current list of events.
/// </para>
/// </remarks>
@@ -96,7 +96,7 @@ namespace log4net.Appender
/// data to be fixed and stored in the appender, hereby
improving performance.
/// </para>
/// <para>
- /// See <see cref="LoggingEvent.FixVolatileData(bool)"/> for
more information.
+ /// See <see cref="M:LoggingEvent.FixVolatileData(bool)"/> for
more information.
/// </para>
/// </remarks>
[Obsolete("Use Fix property")]
@@ -137,7 +137,7 @@ namespace log4net.Appender
#region Override implementation of AppenderSkeleton
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">the event to log</param>
/// <remarks>
Modified: logging/log4net/trunk/src/Appender/NetSendAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/NetSendAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/NetSendAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/NetSendAppender.cs Mon Sep 3 06:52:19
2012
@@ -296,7 +296,7 @@ namespace log4net.Appender
#region Override implementation of AppenderSkeleton
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
/// <remarks>
Modified: logging/log4net/trunk/src/Appender/RemoteSyslogAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/RemoteSyslogAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/RemoteSyslogAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/RemoteSyslogAppender.cs Mon Sep 3
06:52:19 2012
@@ -330,7 +330,7 @@ namespace log4net.Appender
#region AppenderSkeleton Implementation
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
/// <remarks>
Modified: logging/log4net/trunk/src/Appender/TextWriterAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/TextWriterAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/TextWriterAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/TextWriterAppender.cs Mon Sep 3
06:52:19 2012
@@ -203,7 +203,7 @@ namespace log4net.Appender
}
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/>
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/>
/// method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
@@ -227,7 +227,7 @@ namespace log4net.Appender
}
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent[])"/>
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent[])"/>
/// method.
/// </summary>
/// <param name="loggingEvents">The array of events to
log.</param>
Modified: logging/log4net/trunk/src/Appender/UdpAppender.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/UdpAppender.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/UdpAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/UdpAppender.cs Mon Sep 3 06:52:19 2012
@@ -387,7 +387,7 @@ namespace log4net.Appender
#region Override implementation of AppenderSkeleton
/// <summary>
- /// This method is called by the <see
cref="AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
+ /// This method is called by the <see
cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
/// </summary>
/// <param name="loggingEvent">The event to log.</param>
/// <remarks>
Modified: logging/log4net/trunk/src/Config/BasicConfigurator.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Config/BasicConfigurator.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Config/BasicConfigurator.cs (original)
+++ logging/log4net/trunk/src/Config/BasicConfigurator.cs Mon Sep 3 06:52:19
2012
@@ -43,7 +43,7 @@ namespace log4net.Config
/// </para>
/// <para>
/// Appenders can also implement the <see
cref="log4net.Core.IOptionHandler"/> interface. Therefore
- /// they would require that the <see
cref="log4net.Core.IOptionHandler.ActivateOptions()"/> method
+ /// they would require that the <see
cref="M:log4net.Core.IOptionHandler.ActivateOptions()"/> method
/// be called after the appenders properties have been configured.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Config/DOMConfigurator.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Config/DOMConfigurator.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Config/DOMConfigurator.cs (original)
+++ logging/log4net/trunk/src/Config/DOMConfigurator.cs Mon Sep 3 06:52:19 2012
@@ -309,10 +309,10 @@ namespace log4net.Config
/// </para>
/// <para>
/// For more information on how to configure log4net using
- /// a separate configuration file, see <see
cref="Configure(FileInfo)"/>.
+ /// a separate configuration file, see <see
cref="M:Configure(FileInfo)"/>.
/// </para>
/// </remarks>
- /// <seealso cref="Configure(FileInfo)"/>
+ /// <seealso cref="M:Configure(FileInfo)"/>
[Obsolete("Use XmlConfigurator.ConfigureAndWatch instead of
DOMConfigurator.ConfigureAndWatch")]
static public void ConfigureAndWatch(FileInfo configFile)
{
@@ -341,10 +341,10 @@ namespace log4net.Config
/// </para>
/// <para>
/// For more information on how to configure log4net using
- /// a separate configuration file, see <see
cref="Configure(FileInfo)"/>.
+ /// a separate configuration file, see <see
cref="M:Configure(FileInfo)"/>.
/// </para>
/// </remarks>
- /// <seealso cref="Configure(FileInfo)"/>
+ /// <seealso cref="M:Configure(FileInfo)"/>
[Obsolete("Use XmlConfigurator.ConfigureAndWatch instead of
DOMConfigurator.ConfigureAndWatch")]
static public void ConfigureAndWatch(ILoggerRepository
repository, FileInfo configFile)
{
Modified: logging/log4net/trunk/src/Config/DOMConfiguratorAttribute.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Config/DOMConfiguratorAttribute.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Config/DOMConfiguratorAttribute.cs (original)
+++ logging/log4net/trunk/src/Config/DOMConfiguratorAttribute.cs Mon Sep 3
06:52:19 2012
@@ -43,7 +43,7 @@ namespace log4net.Config
/// </para>
/// <para>
/// Use this attribute to configure the <see cref="XmlConfigurator"/>
- /// without calling one of the <see cref="XmlConfigurator.Configure()"/>
+ /// without calling one of the <see
cref="M:XmlConfigurator.Configure()"/>
/// methods.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Config/PluginAttribute.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Config/PluginAttribute.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Config/PluginAttribute.cs (original)
+++ logging/log4net/trunk/src/Config/PluginAttribute.cs Mon Sep 3 06:52:19 2012
@@ -167,7 +167,7 @@ namespace log4net.Config
/// </summary>
/// <remarks>
/// <para>
- /// Overrides base class <see cref="Object.ToString()" />
method to
+ /// Overrides base class <see cref="M:Object.ToString()" />
method to
/// return a representation of the properties of this object.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Config/SecurityContextProviderAttribute.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Config/SecurityContextProviderAttribute.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Config/SecurityContextProviderAttribute.cs
(original)
+++ logging/log4net/trunk/src/Config/SecurityContextProviderAttribute.cs Mon
Sep 3 06:52:19 2012
@@ -39,7 +39,7 @@ namespace log4net.Config
/// </para>
/// <para>
/// Use this attribute to configure the <see cref="XmlConfigurator"/>
- /// without calling one of the <see cref="XmlConfigurator.Configure()"/>
+ /// without calling one of the <see
cref="M:XmlConfigurator.Configure()"/>
/// methods.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Config/XmlConfigurator.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Config/XmlConfigurator.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Config/XmlConfigurator.cs (original)
+++ logging/log4net/trunk/src/Config/XmlConfigurator.cs Mon Sep 3 06:52:19 2012
@@ -804,10 +804,10 @@ namespace log4net.Config
/// </para>
/// <para>
/// For more information on how to configure log4net using
- /// a separate configuration file, see <see
cref="Configure(FileInfo)"/>.
+ /// a separate configuration file, see <see
cref="M:Configure(FileInfo)"/>.
/// </para>
/// </remarks>
- /// <seealso cref="Configure(FileInfo)"/>
+ /// <seealso cref="M:Configure(FileInfo)"/>
static public ICollection ConfigureAndWatch(FileInfo configFile)
{
ArrayList configurationMessages = new ArrayList();
@@ -843,10 +843,10 @@ namespace log4net.Config
/// </para>
/// <para>
/// For more information on how to configure log4net using
- /// a separate configuration file, see <see
cref="Configure(FileInfo)"/>.
+ /// a separate configuration file, see <see
cref="M:Configure(FileInfo)"/>.
/// </para>
/// </remarks>
- /// <seealso cref="Configure(FileInfo)"/>
+ /// <seealso cref="M:Configure(FileInfo)"/>
static public ICollection ConfigureAndWatch(ILoggerRepository
repository, FileInfo configFile)
{
ArrayList configurationMessages = new ArrayList();
Modified: logging/log4net/trunk/src/Config/XmlConfiguratorAttribute.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Config/XmlConfiguratorAttribute.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Config/XmlConfiguratorAttribute.cs (original)
+++ logging/log4net/trunk/src/Config/XmlConfiguratorAttribute.cs Mon Sep 3
06:52:19 2012
@@ -41,7 +41,7 @@ namespace log4net.Config
/// </para>
/// <para>
/// Use this attribute to configure the <see cref="XmlConfigurator"/>
- /// without calling one of the <see cref="XmlConfigurator.Configure()"/>
+ /// without calling one of the <see
cref="M:XmlConfigurator.Configure()"/>
/// methods.
/// </para>
/// <para>
@@ -72,7 +72,7 @@ namespace log4net.Config
/// <para>
/// If you cannot guarantee the order in which log4net calls will be
made from
/// different assemblies you must use programmatic configuration
instead, i.e.
- /// call the <see cref="XmlConfigurator.Configure()"/> method directly.
+ /// call the <see cref="M:XmlConfigurator.Configure()"/> method
directly.
/// </para>
/// </note>
/// </remarks>
Modified: logging/log4net/trunk/src/Core/CompactRepositorySelector.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Core/CompactRepositorySelector.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Core/CompactRepositorySelector.cs (original)
+++ logging/log4net/trunk/src/Core/CompactRepositorySelector.cs Mon Sep 3
06:52:19 2012
@@ -124,7 +124,7 @@ namespace log4net.Core
/// <para>
/// Get the named <see cref="ILoggerRepository"/>. The default
/// repository is <c>log4net-default-repository</c>. Other
repositories
- /// must be created using the <see
cref="CreateRepository(string, Type)"/>.
+ /// must be created using the <see
cref="M:CreateRepository(string, Type)"/>.
/// If the named repository does not exist an exception is
thrown.
/// </para>
/// </remarks>
@@ -203,7 +203,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// The <see cref="ILoggerRepository"/> created will be
associated with the repository
- /// specified such that a call to <see
cref="GetRepository(string)"/> with the
+ /// specified such that a call to <see
cref="M:GetRepository(string)"/> with the
/// same repository specified will return the same repository
instance.
/// </para>
/// <para>
@@ -267,8 +267,8 @@ namespace log4net.Core
/// <returns><c>true</c> if the repository exists</returns>
/// <remarks>
/// <para>
- /// Test if a named repository exists. Use <see
cref="CreateRepository(string, Type)"/>
- /// to create a new repository and <see
cref="GetRepository(string)"/> to retrieve
+ /// Test if a named repository exists. Use <see
cref="M:CreateRepository(string, Type)"/>
+ /// to create a new repository and <see
cref="M:GetRepository(string)"/> to retrieve
/// a repository.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Core/DefaultRepositorySelector.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Core/DefaultRepositorySelector.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Core/DefaultRepositorySelector.cs (original)
+++ logging/log4net/trunk/src/Core/DefaultRepositorySelector.cs Mon Sep 3
06:52:19 2012
@@ -151,7 +151,7 @@ namespace log4net.Core
/// does not exist a <see cref="LogException"/> is thrown.
/// </para>
/// <para>
- /// Use <see cref="CreateRepository(string, Type)"/> to create
a repository.
+ /// Use <see cref="M:CreateRepository(string, Type)"/> to
create a repository.
/// </para>
/// </remarks>
/// <exception cref="ArgumentNullException"><paramref
name="repositoryName"/> is <see langword="null" />.</exception>
@@ -184,7 +184,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// The <see cref="ILoggerRepository"/> created will be
associated with the repository
- /// specified such that a call to <see
cref="GetRepository(Assembly)"/> with the
+ /// specified such that a call to <see
cref="M:GetRepository(Assembly)"/> with the
/// same assembly specified will return the same repository
instance.
/// </para>
/// <para>
@@ -227,7 +227,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// The <see cref="ILoggerRepository"/> created will be
associated with the repository
- /// specified such that a call to <see
cref="GetRepository(Assembly)"/> with the
+ /// specified such that a call to <see
cref="M:GetRepository(Assembly)"/> with the
/// same assembly specified will return the same repository
instance.
/// </para>
/// <para>
@@ -347,7 +347,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// The <see cref="ILoggerRepository"/> created will be
associated with the repository
- /// specified such that a call to <see
cref="GetRepository(string)"/> with the
+ /// specified such that a call to <see
cref="M:GetRepository(string)"/> with the
/// same repository specified will return the same repository
instance.
/// </para>
/// </remarks>
@@ -433,8 +433,8 @@ namespace log4net.Core
/// <returns><c>true</c> if the repository exists</returns>
/// <remarks>
/// <para>
- /// Test if a named repository exists. Use <see
cref="CreateRepository(string, Type)"/>
- /// to create a new repository and <see
cref="GetRepository(string)"/> to retrieve
+ /// Test if a named repository exists. Use <see
cref="M:CreateRepository(string, Type)"/>
+ /// to create a new repository and <see
cref="M:GetRepository(string)"/> to retrieve
/// a repository.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Core/ErrorCode.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Core/ErrorCode.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Core/ErrorCode.cs (original)
+++ logging/log4net/trunk/src/Core/ErrorCode.cs Mon Sep 3 06:52:19 2012
@@ -22,11 +22,11 @@ using System;
namespace log4net.Core
{
/// <summary>
- /// Defined error codes that can be passed to the <see
cref="IErrorHandler.Error(string, Exception, ErrorCode)"/> method.
+ /// Defined error codes that can be passed to the <see
cref="M:IErrorHandler.Error(string, Exception, ErrorCode)"/> method.
/// </summary>
/// <remarks>
/// <para>
- /// Values passed to the <see cref="IErrorHandler.Error(string,
Exception, ErrorCode)"/> method.
+ /// Values passed to the <see cref="M:IErrorHandler.Error(string,
Exception, ErrorCode)"/> method.
/// </para>
/// </remarks>
/// <author>Nicko Cadell</author>
Modified: logging/log4net/trunk/src/Core/ExceptionEvaluator.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Core/ExceptionEvaluator.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Core/ExceptionEvaluator.cs (original)
+++ logging/log4net/trunk/src/Core/ExceptionEvaluator.cs Mon Sep 3 06:52:19
2012
@@ -27,7 +27,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// This evaluator will trigger if the type of the Exception
- /// passed to <see cref="IsTriggeringEvent(LoggingEvent)"/>
+ /// passed to <see cref="M:IsTriggeringEvent(LoggingEvent)"/>
/// is equal to a Type in <see cref="ExceptionType"/>. ///
/// </para>
/// </remarks>
@@ -98,7 +98,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// This evaluator will trigger if the Exception Type of the
event
- /// passed to <see cref="IsTriggeringEvent(LoggingEvent)"/>
+ /// passed to <see cref="M:IsTriggeringEvent(LoggingEvent)"/>
/// is <see cref="ExceptionType"/>.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Core/IErrorHandler.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Core/IErrorHandler.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Core/IErrorHandler.cs (original)
+++ logging/log4net/trunk/src/Core/IErrorHandler.cs Mon Sep 3 06:52:19 2012
@@ -56,7 +56,7 @@ namespace log4net.Core
/// <param name="e">The <see cref="Exception" /> that was
thrown when the error occurred.</param>
/// <remarks>
/// <para>
- /// See <see cref="Error(string,Exception,ErrorCode)"/>.
+ /// See <see cref="M:Error(string,Exception,ErrorCode)"/>.
/// </para>
/// </remarks>
void Error(string message, Exception e);
@@ -67,7 +67,7 @@ namespace log4net.Core
/// <param name="message">The message associated with the
error.</param>
/// <remarks>
/// <para>
- /// See <see cref="Error(string,Exception,ErrorCode)"/>.
+ /// See <see cref="M:Error(string,Exception,ErrorCode)"/>.
/// </para>
/// </remarks>
void Error(string message);
Modified: logging/log4net/trunk/src/Core/IRepositorySelector.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Core/IRepositorySelector.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Core/IRepositorySelector.cs (original)
+++ logging/log4net/trunk/src/Core/IRepositorySelector.cs Mon Sep 3 06:52:19
2012
@@ -128,7 +128,7 @@ namespace log4net.Core
/// <returns>The named <see cref="ILoggerRepository"/></returns>
/// <remarks>
/// Lookup a named <see cref="ILoggerRepository"/>. This is the
repository created by
- /// calling <see cref="CreateRepository(string,Type)"/>.
+ /// calling <see cref="M:CreateRepository(string,Type)"/>.
/// </remarks>
ILoggerRepository GetRepository(string repositoryName);
@@ -141,7 +141,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// The <see cref="ILoggerRepository"/> created will be
associated with the domain
- /// specified such that a call to <see
cref="GetRepository(Assembly)"/> with the
+ /// specified such that a call to <see
cref="M:GetRepository(Assembly)"/> with the
/// same assembly specified will return the same repository
instance.
/// </para>
/// <para>
@@ -161,7 +161,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// The <see cref="ILoggerRepository"/> created will be
associated with the name
- /// specified such that a call to <see
cref="GetRepository(string)"/> with the
+ /// specified such that a call to <see
cref="M:GetRepository(string)"/> with the
/// same name will return the same repository instance.
/// </para>
/// </remarks>
@@ -174,8 +174,8 @@ namespace log4net.Core
/// <returns><c>true</c> if the repository exists</returns>
/// <remarks>
/// <para>
- /// Test if a named repository exists. Use <see
cref="CreateRepository(Assembly, Type)"/>
- /// to create a new repository and <see
cref="GetRepository(Assembly)"/> to retrieve
+ /// Test if a named repository exists. Use <see
cref="M:CreateRepository(Assembly, Type)"/>
+ /// to create a new repository and <see
cref="M:GetRepository(Assembly)"/> to retrieve
/// a repository.
/// </para>
/// </remarks>
Modified: logging/log4net/trunk/src/Core/LevelEvaluator.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Core/LevelEvaluator.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Core/LevelEvaluator.cs (original)
+++ logging/log4net/trunk/src/Core/LevelEvaluator.cs Mon Sep 3 06:52:19 2012
@@ -29,7 +29,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// This evaluator will trigger if the level of the event
- /// passed to <see cref="IsTriggeringEvent(LoggingEvent)"/>
+ /// passed to <see cref="M:IsTriggeringEvent(LoggingEvent)"/>
/// is equal to or greater than the <see cref="Threshold"/>
/// level.
/// </para>
@@ -51,7 +51,7 @@ namespace log4net.Core
/// </para>
/// <para>
/// This evaluator will trigger if the level of the event
- /// passed to <see cref="IsTriggeringEvent(LoggingEvent)"/>
+ /// passed to <see cref="M:IsTriggeringEvent(LoggingEvent)"/>
/// is equal to or greater than the <see cref="Threshold"/>
/// level.
/// </para>
@@ -70,7 +70,7 @@ namespace log4net.Core
/// </para>
/// <para>
/// This evaluator will trigger if the level of the event
- /// passed to <see cref="IsTriggeringEvent(LoggingEvent)"/>
+ /// passed to <see cref="M:IsTriggeringEvent(LoggingEvent)"/>
/// is equal to or greater than the <see cref="Threshold"/>
/// level.
/// </para>
@@ -94,7 +94,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// This evaluator will trigger if the level of the event
- /// passed to <see cref="IsTriggeringEvent(LoggingEvent)"/>
+ /// passed to <see cref="M:IsTriggeringEvent(LoggingEvent)"/>
/// is equal to or greater than the <see cref="Threshold"/>
/// level.
/// </para>
@@ -115,7 +115,7 @@ namespace log4net.Core
/// <remarks>
/// <para>
/// This evaluator will trigger if the level of the event
- /// passed to <see cref="IsTriggeringEvent(LoggingEvent)"/>
+ /// passed to <see cref="M:IsTriggeringEvent(LoggingEvent)"/>
/// is equal to or greater than the <see cref="Threshold"/>
/// level.
/// </para>
Modified: logging/log4net/trunk/src/Core/LevelMap.cs
URL:
http://svn.apache.org/viewvc/logging/log4net/trunk/src/Core/LevelMap.cs?rev=1380139&r1=1380138&r2=1380139&view=diff
==============================================================================
--- logging/log4net/trunk/src/Core/LevelMap.cs (original)
+++ logging/log4net/trunk/src/Core/LevelMap.cs Mon Sep 3 06:52:19 2012
@@ -112,7 +112,7 @@ namespace log4net.Core
/// Create a new Level and add it to the map
/// </para>
/// </remarks>
- /// <seealso cref="Add(string,int,string)"/>
+ /// <seealso cref="M:Add(string,int,string)"/>
public void Add(string name, int value)
{
Add(name, value, null);