HealthReportSnapshot Methods
RecordMethods8 members
A report produced by a health check about a resource.
public record HealthReportSnapshot{ public HealthReportSnapshot <Clone>$() { // ... }}Deconstruct(string, HealthStatus??, string?, string?)Section titled Deconstruct(string, HealthStatus??, string?, string?)public record HealthReportSnapshot{ public void Deconstruct( out string Name, out HealthStatus?? Status, out string? Description, out string? ExceptionText) { // ... }}Parameters
NamestringStatusHealthStatus??Descriptionstring?ExceptionTextstring?Determines whether the specified object is equal to the current object.
public record HealthReportSnapshot{ public override bool Equals( object? obj) { // ... }}Parameters
objobject?The object to compare with the current object.Returns
booltrue if the specified object is equal to the current object; otherwise, false.Indicates whether the current object is equal to another object of the same type.
public record HealthReportSnapshot{ public bool Equals( HealthReportSnapshot? other) { // ... }}Parameters
otherHealthReportSnapshot?An object to compare with this object.Returns
booltrue if the current object is equal to the other parameter; otherwise, false.Serves as the default hash function.
public record HealthReportSnapshot{ public override int GetHashCode() { // ... }}Returns
intA hash code for the current object.op_Equality(HealthReportSnapshot?, HealthReportSnapshot?)Section titled op_Equality(HealthReportSnapshot?, HealthReportSnapshot?)staticboolpublic record HealthReportSnapshot{ public static bool operator ==( HealthReportSnapshot? left, HealthReportSnapshot? right) { // ... }}Parameters
op_Inequality(HealthReportSnapshot?, HealthReportSnapshot?)Section titled op_Inequality(HealthReportSnapshot?, HealthReportSnapshot?)staticboolpublic record HealthReportSnapshot{ public static bool operator !=( HealthReportSnapshot? left, HealthReportSnapshot? right) { // ... }}Parameters
Returns a string that represents the current object.
public record HealthReportSnapshot{ public override string ToString() { // ... }}Returns
stringA string that represents the current object.