Skip to content

Commit

Permalink
WebSocketTransport Constructor (#195)
Browse files Browse the repository at this point in the history
The focus of these changes is to change the access scope of the
`WebSocketTransport` constructor from `internal` to `public` to mirror
that of the other transport types.
  • Loading branch information
jsquire authored Aug 10, 2021
1 parent fa1b2be commit 5c499b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Microsoft.Azure.Amqp/Amqp/Transport/WebSocketTransport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public override string RemoteEndPoint
}
}

internal WebSocketTransport(WebSocket webSocket, Uri uri)
public WebSocketTransport(WebSocket webSocket, Uri uri)
: base(WebSocketTransportSettings.WebSockets)
{
this.webSocket = webSocket;
Expand Down

0 comments on commit 5c499b9

Please sign in to comment.