File: Common\ErrorListItem.cs
Web Access
Project: ..\..\..\src\VisualStudio\IntegrationTest\TestUtilities\Microsoft.VisualStudio.IntegrationTest.Utilities.csproj (Microsoft.VisualStudio.IntegrationTest.Utilities)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
using System;
using Roslyn.Utilities;
 
namespace Microsoft.VisualStudio.IntegrationTest.Utilities.Common
{
    [Serializable]
    public class ErrorListItem : IEquatable<ErrorListItem>
    {
        public string Severity { get; set; }
        public string Description { get; set; }
        public string Project { get; set; }
        public string FileName { get; set; }
        public int Line { get; set; }
        public int Column { get; set; }
 
        public ErrorListItem(string severity, string description, string project, string fileName, int line, int column)
        {
            Severity = severity;
            Description = description;
            Project = project;
            FileName = fileName;
            Line = line;
            Column = column;
        }
 
        public bool Equals(ErrorListItem? other)
            => other != null
            && Comparison.AreStringValuesEqual(Severity, other.Severity)
            && Comparison.AreStringValuesEqual(Description, other.Description)
            && Comparison.AreStringValuesEqual(Project, other.Project)
            && Comparison.AreStringValuesEqual(FileName, other.FileName)
            && Line == other.Line
            && Column == other.Column;
 
        public override bool Equals(object? obj)
            => Equals(obj as ErrorListItem);
 
        public override int GetHashCode()
            => Hash.Combine(Severity, Hash.Combine(Description, Hash.Combine(Project, Hash.Combine(FileName, Hash.Combine(Line, Hash.Combine(Column, 0))))));
 
        public override string ToString()
            => $"Severity:{Severity} Description:{Description} Project:{Project} File:{FileName} Line:{Line} Column:{Column}";
    }
}