Пример #1
0
 /// <summary>
 /// Creates a new instance of the <see cref="RemoveLoggingPolicyCommand"/> class with the given <see cref="ILoggingPolicyService"/>.
 /// </summary>
 /// <param name="loggingService">The <see cref="ILoggingPolicyService"/> to use. The default is the current instance.</param>
 internal RemoveLoggingPolicyCommand(ILoggingPolicyService loggingService = null)
     : base(loggingService)
 {
 }
Пример #2
0
 /// <summary>
 /// Creates a new instance of the <see cref="LoggingPolicyCommandBase"/> class using the given <see cref="ILoggingPolicyService"/>.
 /// </summary>
 /// <param name="loggingService">The <see cref="ILoggingPolicyService"/> to use. The default is the current instance.</param>
 internal LoggingPolicyCommandBase(ILoggingPolicyService loggingService = null)
 {
     this.loggingService = loggingService ?? this;
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LoggingPolicyCommandBase"/> class.
 /// </summary>
 /// <param name="loggingService">The <see cref="ILoggingPolicyService"/> to use. The default is the current instance.</param>
 internal LoggingPolicyCommandBase(ILoggingPolicyService loggingService = null)
 {
     this.loggingService = loggingService ?? this;
 }
Пример #4
0
 /// <summary>
 /// Creates a new instance of the <see cref="RemoveLoggingPolicyCommand"/> class with the given <see cref="ILoggingPolicyService"/>.
 /// </summary>
 /// <param name="loggingService">The <see cref="ILoggingPolicyService"/> to use. The default is the current instance.</param>
 internal RemoveLoggingPolicyCommand(ILoggingPolicyService loggingService = null)
     : base(loggingService)
 {
 }