Edição atualizada, consulte a opção 3 abaixo.Todos os outros estão contando com o tempo limite, eu postei uma desconexão forçada.
Se você estiver tentando uma desconexão forçada - poderá obter a lista dos usuários conectados e ligar para o ForceLogOut
função no lado do servidor. Vi isso em algum lugar no projeto de código, espero que ajude. Se você quiser forçar o logout / matar apenas alguns dos usuários, faça um loop e elimine somente essa conexão.
Lado do servidor
public class User
{
public string Name { get; set; }
public HashSet<string> ConnectionIds { get; set; }
}
public class ExtendedHub : Hub
{
private static readonly ConcurrentDictionary<string, User> ActiveUsers =
new ConcurrentDictionary<string, User>(StringComparer.InvariantCultureIgnoreCase);
public IEnumerable<string> GetConnectedUsers()
{
return ActiveUsers.Where(x => {
lock (x.Value.ConnectionIds)
{
return !x.Value.ConnectionIds.Contains
(Context.ConnectionId, StringComparer.InvariantCultureIgnoreCase);
}
}).Select(x => x.Key);
}
public void forceLogOut(string to)
{
User receiver;
if (ActiveUsers.TryGetValue(to, out receiver))
{
IEnumerable<string> allReceivers;
lock (receiver.ConnectionIds)
{
allReceivers = receiver.ConnectionIds.Concat(receiver.ConnectionIds);
}
foreach (var cid in allReceivers)
{
// ***************** log out/KILL connection for whom ever your want here
Clients.Client(cid).Signout();
}
}
}
}
Lado do Cliente
// 1- Save your connection variable when you start it, and later on you can use it to stop.
var myHubProxy = $.connection.myHub
// 2- Use it when you need to stop it, IF NOT YOU WILL GET AN ERROR
myHubProxy.client.stopClient = function() {
$.connection.hub.stop();
};
// With a button for testing
$('#SomeButtonKillSignalr').click(function () {
$.connection.hub.stop();
});
Atualizado com a opção 3 : com base em solicitação ... as outras soluções dependem do tempo limite, mas você também pode forçá-lo diretamente , descartando a conexão por conta própria
Abri o código SignalR e, dentro, você pode ver DisposeAndRemoveAsync
o encerramento real de uma conexão de cliente.
1- Você pode modificar ou ligar DisposeAndRemoveAsync
com sua conexão.
2- Então ligue RemoveConnection(connection.ConnectionId);
public async Task DisposeAndRemoveAsync(HttpConnectionContext connection)
{
try
{
// this will force it
await connection.DisposeAsync();
}
catch (IOException ex)
{
_logger.ConnectionReset(connection.ConnectionId, ex);
}
catch (WebSocketException ex) when (ex.InnerException is IOException)
{
_logger.ConnectionReset(connection.ConnectionId, ex);
}
catch (Exception ex)
{
_logger.FailedDispose(connection.ConnectionId, ex);
}
finally
{
// Remove it from the list after disposal so that's it's easy to see
// connections that might be in a hung state via the connections list
RemoveConnection(connection.ConnectionId);
}
}
Cuidado, limpe-se quando isso for feito.