INNER CODE UNIT · C#
Equals
graphql-dotnet/graphql-client · src/GraphQL.Client.Abstractions.Websocket/GraphQLWebSocketRequest.cs:64
public override bool Equals(object obj) => Equals(obj as GraphQLWebSocketRequest);
/// <inheritdoc />
public bool Equals(GraphQLWebSocketRequest other)
{
if (other == null)
{
return false;
}
if (ReferenceEquals(this, other))
{
return true;
}
if (!Equals(Id, other.Id))
{
return false;
}
if (!Equals(Type, other.Type))