|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using Microsoft.Extensions.Compliance.Classification;
namespace Microsoft.Extensions.Compliance.Testing;
/// <summary>
/// State representing a single request for a redactor.
/// </summary>
public readonly struct RedactorRequested : IEquatable<RedactorRequested>
{
/// <summary>
/// Gets the data classifications for which the redactor was returned.
/// </summary>
public DataClassificationSet DataClassifications { get; }
/// <summary>
/// Gets the order in which the redactor was requested.
/// </summary>
public int SequenceNumber { get; }
/// <summary>
/// Initializes a new instance of the <see cref="RedactorRequested"/> struct.
/// </summary>
/// <param name="classifications">Data classifications for which redactor was used.</param>
/// <param name="sequenceNumber">Order in which the request was used.</param>
public RedactorRequested(DataClassificationSet classifications, int sequenceNumber)
{
DataClassifications = classifications;
SequenceNumber = sequenceNumber;
}
/// <summary>
/// Checks if object is equal to this instance of <see cref="object"/>.
/// </summary>
/// <param name="obj">Object to check for equality.</param>
/// <returns><see langword="true" /> if object instances are equal <see langword="false" /> otherwise.</returns>
public override bool Equals(object? obj) => obj is RedactorRequested other && Equals(other);
/// <summary>
/// Checks if object is equal to this instance of <see cref="RedactorRequested"/>.
/// </summary>
/// <param name="other">Instance to check for equality.</param>
/// <returns><see langword="true" /> if object instances are equal <see langword="false" /> otherwise.</returns>
public bool Equals(RedactorRequested other) => other.SequenceNumber == SequenceNumber && other.DataClassifications.Equals(DataClassifications);
/// <summary>
/// Get the hash code of given <see cref="RedactorRequested"/>.
/// </summary>
/// <returns>Hash code.</returns>
public override int GetHashCode() => HashCode.Combine(SequenceNumber, DataClassifications);
/// <summary>
/// Compares two instances.
/// </summary>
/// <param name="left">Left argument of the comparison.</param>
/// <param name="right">Right argument of the comparison.</param>
/// <returns><see langword="true" /> when equal, <see langword="false" /> otherwise.</returns>
public static bool operator ==(RedactorRequested left, RedactorRequested right)
{
return left.Equals(right);
}
/// <summary>
/// Compares two instances.
/// </summary>
/// <param name="left">Left argument of the comparison.</param>
/// <param name="right">Right argument of the comparison.</param>
/// <returns><see langword="true" /> when not equal, <see langword="false" /> otherwise.</returns>
public static bool operator !=(RedactorRequested left, RedactorRequested right)
{
return !(left == right);
}
}
|