Skip to content
DocsTry Aspire
DocsTry

UrlDisplayPropertiesSnapshot Methods

RecordMethods8 members
A snapshot of the display properties for a url.
public record UrlDisplayPropertiesSnapshot
{
public UrlDisplayPropertiesSnapshot <Clone>$()
{
// ...
}
}
public record UrlDisplayPropertiesSnapshot
{
public void Deconstruct(
out string DisplayName,
out int SortOrder)
{
// ...
}
}
DisplayNamestring
SortOrderint
Equals(object?)Section titled Equals(object?)overridebool
Determines whether the specified object is equal to the current object.
public record UrlDisplayPropertiesSnapshot
{
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(UrlDisplayPropertiesSnapshot?)Section titled Equals(UrlDisplayPropertiesSnapshot?)bool
Indicates whether the current object is equal to another object of the same type.
public record UrlDisplayPropertiesSnapshot
{
public bool Equals(
UrlDisplayPropertiesSnapshot? other)
{
// ...
}
}
otherUrlDisplayPropertiesSnapshot?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 UrlDisplayPropertiesSnapshot
{
public override int GetHashCode()
{
// ...
}
}
intA hash code for the current object.
op_Equality(UrlDisplayPropertiesSnapshot?, UrlDisplayPropertiesSnapshot?)Section titled op_Equality(UrlDisplayPropertiesSnapshot?, UrlDisplayPropertiesSnapshot?)staticbool
public record UrlDisplayPropertiesSnapshot
{
public static bool operator ==(
UrlDisplayPropertiesSnapshot? left,
UrlDisplayPropertiesSnapshot? right)
{
// ...
}
}
op_Inequality(UrlDisplayPropertiesSnapshot?, UrlDisplayPropertiesSnapshot?)Section titled op_Inequality(UrlDisplayPropertiesSnapshot?, UrlDisplayPropertiesSnapshot?)staticbool
public record UrlDisplayPropertiesSnapshot
{
public static bool operator !=(
UrlDisplayPropertiesSnapshot? left,
UrlDisplayPropertiesSnapshot? right)
{
// ...
}
}
ToStringSection titled ToStringoverridestring
Returns a string that represents the current object.
public record UrlDisplayPropertiesSnapshot
{
public override string ToString()
{
// ...
}
}
stringA string that represents the current object.