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
Hi..
I Added the following constructor to HubConnection.java
public HubConnection(String url, Context context, ITransport transport, String queryString) {
super(url, context, transport, queryString);
setUrl(GetUrl(url, true));
setQueryString(queryString);
}
to be able adding queryString while initializing my connection.
But the problem I got null in OnConnect event in Hub server side
public override Task OnConnected()
{
...
}
Why queryString value not showing?? any help?
The text was updated successfully, but these errors were encountered:
Hi..
I Added the following constructor to HubConnection.java
public HubConnection(String url, Context context, ITransport transport, String queryString) {
super(url, context, transport, queryString);
setUrl(GetUrl(url, true));
setQueryString(queryString);
}
to be able adding queryString while initializing my connection.
But the problem I got null in OnConnect event in Hub server side
public override Task OnConnected()
{
...
}
Why queryString value not showing?? any help?
The text was updated successfully, but these errors were encountered: