log4net SDK Reference

AppenderCollection.Insert Method 

Inserts an element into the AppenderCollection at the specified index.

[Visual Basic]
Overridable Public Sub Insert( _
   ByVal index As Integer, _
   ByVal item As IAppender _
)
[C#]
public virtual void Insert(
   int index,
   IAppender item
);

Parameters

index
The zero-based index at which item should be inserted.
item
The IAppender to insert.

Remarks

Missing <remarks> documentation for M:log4net.Appender.AppenderCollection.Insert(System.Int32,log4net.Appender.IAppender)

Exceptions

Exception Type Condition
ArgumentOutOfRangeException

index is less than zero

-or-

index is equal to or greater than Count.

See Also

AppenderCollection Class | log4net.Appender Namespace