6public sealed class Stream : IEquatable<Stream>
25 if (ReferenceEquals(
null, other))
return false;
26 if (ReferenceEquals(
this, other))
return true;
35 public override bool Equals(
object? obj)
37 if (ReferenceEquals(
null, obj))
return false;
38 if (ReferenceEquals(
this, obj))
return true;
39 if (obj.GetType() != GetType())
return false;
49 return Token.GetHashCode();
Represents a Fauna stream token.
string Token
Gets the string value of the stream token.
override int GetHashCode()
The default hash function.
bool Equals(Stream? other)
Determines whether the specified Stream is equal to the current Stream.
override bool Equals(object? obj)
Determines whether the specified object is equal to the current Stream.