File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
GraphQL.Client.Abstractions Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 55
66namespace GraphQL . Client . Abstractions
77{
8- public interface IGraphQLClient : IDisposable
8+ public interface IGraphQLClient
99 {
1010 Task < GraphQLResponse < TResponse > > SendQueryAsync < TResponse > ( GraphQLRequest request , CancellationToken cancellationToken = default ) ;
1111
@@ -14,7 +14,7 @@ public interface IGraphQLClient : IDisposable
1414 /// <summary>
1515 /// Creates a subscription to a GraphQL server. The connection is not established until the first actual subscription is made.<br/>
1616 /// All subscriptions made to this stream share the same hot observable.<br/>
17- /// The stream must be recreated completely after an error has occured within its logic (i.e. a <see cref="WebSocketException"/>)
17+ /// The stream must be recreated completely after an error has occurred within its logic (i.e. a <see cref="WebSocketException"/>)
1818 /// </summary>
1919 /// <param name="request">the GraphQL request for this subscription</param>
2020 /// <returns>an observable stream for the specified subscription</returns>
Original file line number Diff line number Diff line change 1212
1313namespace GraphQL . Client . Http
1414{
15- public class GraphQLHttpClient : IGraphQLClient
15+ public class GraphQLHttpClient : IGraphQLClient , IDisposable
1616 {
1717 private readonly Lazy < GraphQLHttpWebSocket > _lazyHttpWebSocket ;
1818 private GraphQLHttpWebSocket GraphQlHttpWebSocket => _lazyHttpWebSocket . Value ;
You can’t perform that action at this time.
0 commit comments