mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-09 14:34:58 +00:00
37 lines
983 B
C#
37 lines
983 B
C#
using System;
|
|
|
|
namespace pnp.api.contosoorders.Areas.HelpPage
|
|
{
|
|
/// <summary>
|
|
/// This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class.
|
|
/// </summary>
|
|
public class InvalidSample
|
|
{
|
|
public InvalidSample(string errorMessage)
|
|
{
|
|
if (errorMessage == null)
|
|
{
|
|
throw new ArgumentNullException("errorMessage");
|
|
}
|
|
ErrorMessage = errorMessage;
|
|
}
|
|
|
|
public string ErrorMessage { get; private set; }
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
InvalidSample other = obj as InvalidSample;
|
|
return other != null && ErrorMessage == other.ErrorMessage;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return ErrorMessage.GetHashCode();
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return ErrorMessage;
|
|
}
|
|
}
|
|
} |