INNER CODE UNIT · C#
SendFailed
graphql-dotnet/graphql-client · src/GraphQL.Client.Abstractions.Websocket/GraphQLWebSocketRequest.cs:56
public void SendFailed(Exception e) => _tcs.SetException(e);
/// <summary>
/// gets called when the GraphQLHttpWebSocket has been disposed before the send operation for this request has started
/// </summary>
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))