Edición actualizada, consulte la Opción 3 a continuación. Todos los demás dependen del tiempo de espera, publiqué una desconexión forzada.
Si está intentando una desconexión forzada, puede obtener la lista de los usuarios conectados y llamar a la ForceLogOut
función en el lado del servidor, lo vi en algún lugar del proyecto de código, espero que ayude. Si solo desea forzar el cierre de sesión / matar a algunos de los usuarios, simplemente realice un bucle y elimine solo esa conexión.
Lado del 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 del 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();
});
Actualizado con la opción 3 : según la solicitud ... las otras soluciones dependen del tiempo de espera, pero también puede forzarlo directamente eliminando la conexión usted mismo
Abrí el código SignalR, y dentro de usted puede ver DisposeAndRemoveAsync
la terminación real de una conexión de cliente.
1- Puedes modificar o llamar DisposeAndRemoveAsync
con tu conexión.
2- Entonces llama 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);
}
}
Precaución, limpie usted mismo cuando haya terminado.