Skip to content
Docs Try Aspire

UrlSnapshot Methods

Record Methods 8 members
A snapshot of the URL.
public record UrlSnapshot
{
public UrlSnapshot <Clone>$()
{
// ...
}
}
Deconstruct(string?, string, bool) Section titled Deconstruct(string?, string, bool)
public record UrlSnapshot
{
public void Deconstruct(
out string? Name,
out string Url,
out bool IsInternal)
{
// ...
}
}
Name string?
Url string
IsInternal bool
Equals(object?) Section titled Equals(object?) override bool
Determines whether the specified object is equal to the current object.
public record UrlSnapshot
{
public override bool Equals(
object? obj)
{
// ...
}
}
obj object? The object to compare with the current object.
bool true if the specified object is equal to the current object; otherwise, false.
Equals(UrlSnapshot?) Section titled Equals(UrlSnapshot?) bool
Indicates whether the current object is equal to another object of the same type.
public record UrlSnapshot
{
public bool Equals(
UrlSnapshot? other)
{
// ...
}
}
other UrlSnapshot? An object to compare with this object.
bool true if the current object is equal to the other parameter; otherwise, false.
GetHashCode Section titled GetHashCode override int
Serves as the default hash function.
public record UrlSnapshot
{
public override int GetHashCode()
{
// ...
}
}
int A hash code for the current object.
op_Equality(UrlSnapshot?, UrlSnapshot?) Section titled op_Equality(UrlSnapshot?, UrlSnapshot?) static bool
public record UrlSnapshot
{
public static bool operator ==(
UrlSnapshot? left,
UrlSnapshot? right)
{
// ...
}
}
op_Inequality(UrlSnapshot?, UrlSnapshot?) Section titled op_Inequality(UrlSnapshot?, UrlSnapshot?) static bool
public record UrlSnapshot
{
public static bool operator !=(
UrlSnapshot? left,
UrlSnapshot? right)
{
// ...
}
}
ToString Section titled ToString override string
Returns a string that represents the current object.
public record UrlSnapshot
{
public override string ToString()
{
// ...
}
}
string A string that represents the current object.