Skip to content
DocsTry Aspire
DocsTry

ResourcePropertySnapshot Methods

RecordMethods8 members
A snapshot of the resource property.
public record ResourcePropertySnapshot
{
public ResourcePropertySnapshot <Clone>$()
{
// ...
}
}
public record ResourcePropertySnapshot
{
public void Deconstruct(
out string Name,
out object? Value)
{
// ...
}
}
Namestring
Valueobject?
Equals(object?)Section titled Equals(object?)overridebool
Determines whether the specified object is equal to the current object.
public record ResourcePropertySnapshot
{
public override bool Equals(
object? obj)
{
// ...
}
}
objobject?The object to compare with the current object.
booltrue if the specified object is equal to the current object; otherwise, false.
Equals(ResourcePropertySnapshot?)Section titled Equals(ResourcePropertySnapshot?)bool
Indicates whether the current object is equal to another object of the same type.
public record ResourcePropertySnapshot
{
public bool Equals(
ResourcePropertySnapshot? other)
{
// ...
}
}
otherResourcePropertySnapshot?An object to compare with this object.
booltrue if the current object is equal to the other parameter; otherwise, false.
GetHashCodeSection titled GetHashCodeoverrideint
Serves as the default hash function.
public record ResourcePropertySnapshot
{
public override int GetHashCode()
{
// ...
}
}
intA hash code for the current object.
op_Equality(ResourcePropertySnapshot?, ResourcePropertySnapshot?)Section titled op_Equality(ResourcePropertySnapshot?, ResourcePropertySnapshot?)staticbool
public record ResourcePropertySnapshot
{
public static bool operator ==(
ResourcePropertySnapshot? left,
ResourcePropertySnapshot? right)
{
// ...
}
}
op_Inequality(ResourcePropertySnapshot?, ResourcePropertySnapshot?)Section titled op_Inequality(ResourcePropertySnapshot?, ResourcePropertySnapshot?)staticbool
public record ResourcePropertySnapshot
{
public static bool operator !=(
ResourcePropertySnapshot? left,
ResourcePropertySnapshot? right)
{
// ...
}
}
ToStringSection titled ToStringoverridestring
Returns a string that represents the current object.
public record ResourcePropertySnapshot
{
public override string ToString()
{
// ...
}
}
stringA string that represents the current object.