INNER CODE UNIT · C#
SendCanceled
graphql-dotnet/graphql-client · src/GraphQL.Client.Abstractions.Websocket/GraphQLWebSocketRequest.cs:61
public void SendCanceled() => _tcs.SetCanceled();
/// <inheritdoc />
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))
{