/// <summary> /// Initializes a new instance of the <see cref="ReportingConfigurationOverride" /> class from the specified instance. /// </summary> /// <param name="other"> /// The instance from which the new instance is to be initialized. /// </param> /// <exception cref="ArgumentNullException"> /// Thrown if <paramref name="other" /> is null. /// </exception> public ReportingConfigurationOverride(ReportingConfigurationOverride other) { if (other == null) { throw new ArgumentNullException(nameof(other)); } Init(other.Configuration, other.NotificationIndex, other.RuleIndex, other.ExtensionIndex, other.Properties); }
public virtual ReportingConfigurationOverride VisitReportingConfigurationOverride(ReportingConfigurationOverride node) { if (node != null) { node.Configuration = VisitNullChecked(node.Configuration); } return(node); }
public bool ValueEquals(ReportingConfigurationOverride other) => ValueComparer.Equals(this, other);