You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -479,7 +471,7 @@ public override void CloseFile()
479
471
/// </remarks>
480
472
publicoverrideStream?AcquireLock()
481
473
{
482
-
returnm_stream;
474
+
returnm_stream;
483
475
}
484
476
485
477
/// <summary>
@@ -519,7 +511,7 @@ public override void OnClose()
519
511
/// <para>
520
512
/// Opens the file once for each <see cref="AcquireLock"/>/<see cref="ReleaseLock"/> cycle,
521
513
/// thus holding the lock for the minimal amount of time. This method of locking
522
-
/// is considerably slower than <see cref="FileAppender.ExclusiveLock"/> but allows
514
+
/// is considerably slower than <see cref="ExclusiveLock"/> but allows
523
515
/// other processes to move/delete the log file whilst logging continues.
524
516
/// </para>
525
517
/// </remarks>
@@ -963,7 +955,7 @@ public virtual string? File
963
955
/// </value>
964
956
/// <remarks>
965
957
/// <para>
966
-
/// The default encoding set is <see cref="System.Text.Encoding.Default"/>
958
+
/// The default encoding set is <see cref="Encoding.Default"/>
967
959
/// which is the encoding for the system's current ANSI code page.
968
960
/// </para>
969
961
/// </remarks>
@@ -986,26 +978,27 @@ public virtual string? File
986
978
publicSecurityContext?SecurityContext{get;set;}
987
979
988
980
/// <summary>
989
-
/// Gets or sets the <see cref="FileAppender.LockingModel"/> used to handle locking of the file.
981
+
/// Gets or sets the <see cref="LockingModel"/> used to handle locking of the file.
990
982
/// </summary>
991
983
/// <value>
992
-
/// The <see cref="FileAppender.LockingModel"/> used to lock the file.
984
+
/// The <see cref="LockingModel"/> used to lock the file.
993
985
/// </value>
994
986
/// <remarks>
995
987
/// <para>
996
-
/// Gets or sets the <see cref="FileAppender.LockingModel"/> used to handle locking of the file.
988
+
/// Gets or sets the <see cref="LockingModel"/> used to handle locking of the file.
997
989
/// </para>
998
990
/// <para>
999
-
/// There are three built in locking models, <see cref="FileAppender.ExclusiveLock"/>, <see cref="FileAppender.MinimalLock"/> and <see cref="FileAppender.InterProcessLock"/> .
991
+
/// There are three built in locking models, <see cref="ExclusiveLock"/>, <see cref="MinimalLock"/> and <see cref="InterProcessLock"/> .
1000
992
/// The first locks the file from the start of logging to the end, the
1001
993
/// second locks only for the minimal amount of time when logging each message
1002
994
/// and the last synchronizes processes using a named system-wide Mutex.
1003
995
/// </para>
1004
996
/// <para>
1005
-
/// The default locking model is the <see cref="FileAppender.ExclusiveLock"/>.
997
+
/// The default locking model is the <see cref="ExclusiveLock"/>.
0 commit comments