/// <summary> /// Initializes a new instance of the <see cref="ResultVersionOne" /> 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 ResultVersionOne(ResultVersionOne other) { if (other == null) { throw new ArgumentNullException(nameof(other)); } Init(other.RuleId, other.RuleKey, other.Level, other.Message, other.FormattedRuleMessage, other.Locations, other.Snippet, other.Id, other.ToolFingerprintContribution, other.Stacks, other.CodeFlows, other.RelatedLocations, other.SuppressionStates, other.BaselineState, other.Fixes, other.Properties); }
public virtual ResultVersionOne VisitResultVersionOne(ResultVersionOne node) { if (node != null) { node.FormattedRuleMessage = VisitNullChecked(node.FormattedRuleMessage); if (node.Locations != null) { for (int index_0 = 0; index_0 < node.Locations.Count; ++index_0) { node.Locations[index_0] = VisitNullChecked(node.Locations[index_0]); } } if (node.Stacks != null) { for (int index_0 = 0; index_0 < node.Stacks.Count; ++index_0) { node.Stacks[index_0] = VisitNullChecked(node.Stacks[index_0]); } } if (node.CodeFlows != null) { for (int index_0 = 0; index_0 < node.CodeFlows.Count; ++index_0) { node.CodeFlows[index_0] = VisitNullChecked(node.CodeFlows[index_0]); } } if (node.RelatedLocations != null) { for (int index_0 = 0; index_0 < node.RelatedLocations.Count; ++index_0) { node.RelatedLocations[index_0] = VisitNullChecked(node.RelatedLocations[index_0]); } } if (node.Fixes != null) { for (int index_0 = 0; index_0 < node.Fixes.Count; ++index_0) { node.Fixes[index_0] = VisitNullChecked(node.Fixes[index_0]); } } } return(node); }
public bool ValueEquals(ResultVersionOne other) => ValueComparer.Equals(this, other);