NUnit.Framework.UnhandledExceptionConfiguration sealed class UnhandledExceptionConfiguration : IEquatable<UnhandledExceptionConfiguration> Documentation Code namespace NUnit.Framework { internal sealed class UnhandledExceptionConfiguration : IEquatable<UnhandledExceptionConfiguration> { public UnhandledExceptionHandling Handling { get; set; } public Type[] Exceptions { get; set; } public UnhandledExceptionConfiguration(UnhandledExceptionHandling Handling, Type[] Exceptions); public static bool operator !=(UnhandledExceptionConfiguration left, UnhandledExceptionConfiguration right); public static bool operator ==(UnhandledExceptionConfiguration left, UnhandledExceptionConfiguration right); public bool Equals(UnhandledExceptionConfiguration other); public void Deconstruct(out UnhandledExceptionHandling Handling, out Type[] Exceptions); } }