UrlSnapshot Methods
RecordMethods8 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) { // ... }}Parameters
Namestring?UrlstringIsInternalboolDetermines whether the specified object is equal to the current object.
public record UrlSnapshot{ 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 UrlSnapshot{ public bool Equals( UrlSnapshot? other) { // ... }}Parameters
otherUrlSnapshot?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 UrlSnapshot{ public override int GetHashCode() { // ... }}Returns
intA hash code for the current object.op_Equality(UrlSnapshot?, UrlSnapshot?)Section titled op_Equality(UrlSnapshot?, UrlSnapshot?)staticboolpublic record UrlSnapshot{ public static bool operator ==( UrlSnapshot? left, UrlSnapshot? right) { // ... }}Parameters
leftUrlSnapshot?rightUrlSnapshot?op_Inequality(UrlSnapshot?, UrlSnapshot?)Section titled op_Inequality(UrlSnapshot?, UrlSnapshot?)staticboolpublic record UrlSnapshot{ public static bool operator !=( UrlSnapshot? left, UrlSnapshot? right) { // ... }}Parameters
leftUrlSnapshot?rightUrlSnapshot?Returns a string that represents the current object.
public record UrlSnapshot{ public override string ToString() { // ... }}Returns
stringA string that represents the current object.