You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have tested the library, with some modifications, and it seems to work.
Is there any limitation or problem? Why is limited to NETFX? ConnectionFactory.cs#L157
The text was updated successfully, but these errors were encountered:
The WebSockets APIs were not available in the netstandard targes. It was provided as extended NuGet packages. We have a separate package, AMQPNetLite.WebSockets, which can be referenced in your project. After that you can have the following code to use it with addresses starting with "ws" or "wss".
var connectionFactory = new ConnectionFactory(new TransportProvider[] { new WebSocketTransportFactory() });
Connection connection = await connectionFactory.CreateAsync(wsAddress);
With the newer .net version it may be different but that would require the library to add a new target framework where websockets can be enabled.
We have tested the library, with some modifications, and it seems to work.
Is there any limitation or problem? Why is limited to NETFX? ConnectionFactory.cs#L157
The text was updated successfully, but these errors were encountered: