@@ -410,31 +410,31 @@ public bool IsClosed
410
410
public IDisposable BeginProcess ( )
411
411
{
412
412
return _processHelper . BeginProcess ( this ) ;
413
- }
413
+ }
414
414
415
- /// <summary>
416
- /// If not nested in another call to <c>BeginProcess</c> on this session, optionnaly check
415
+ /// <summary>
416
+ /// If not nested in another call to <c>BeginProcess</c> on this session, optionnaly check
417
417
/// and update the session status, then set its session id in context and flag it as processing.
418
- /// </summary>
418
+ /// </summary>
419
419
/// <param name="noCheckAndUpdate"><see langword="true" /> to initiate a processing without
420
420
/// checking and updating the session.</param>
421
- /// <returns>
422
- /// If not already processing, an object to dispose for signaling the end of the process.
423
- /// Otherwise, <see langword="null" />.
424
- /// </returns>
425
- protected IDisposable BeginProcess ( bool noCheckAndUpdate )
426
- {
427
- return _processHelper . BeginProcess ( this , noCheckAndUpdate ) ;
428
- }
429
-
430
- /// <summary>
431
- /// If not nested in a call to <c>BeginProcess</c> on this session, set its session id in context.
432
- /// </summary>
433
- /// <returns>
434
- /// If not already processing, an object to dispose for restoring the previous session id.
435
- /// Otherwise, <see langword="null" />.
436
- /// </returns>
437
- public IDisposable BeginContext ( )
421
+ /// <returns>
422
+ /// If not already processing, an object to dispose for signaling the end of the process.
423
+ /// Otherwise, <see langword="null" />.
424
+ /// </returns>
425
+ protected IDisposable BeginProcess ( bool noCheckAndUpdate )
426
+ {
427
+ return _processHelper . BeginProcess ( this , noCheckAndUpdate ) ;
428
+ }
429
+
430
+ /// <summary>
431
+ /// If not nested in a call to <c>BeginProcess</c> on this session, set its session id in context.
432
+ /// </summary>
433
+ /// <returns>
434
+ /// If not already processing, an object to dispose for restoring the previous session id.
435
+ /// Otherwise, <see langword="null" />.
436
+ /// </returns>
437
+ public IDisposable BeginContext ( )
438
438
{
439
439
return _processHelper . Processing ? null : SessionIdLoggingContext . CreateOrNull ( SessionId ) ;
440
440
}
0 commit comments