Güncellenmiş Düzenleme, lütfen aşağıdaki Seçenek 3'e bakın. Tüm diğerleri zaman aşımına güveniyor, zorla bağlantıyı kesdim.
Bir Bağlantıyı Kesmeye çalışıyorsanız - Bağlı Kullanıcıların listesini alabilir ForceLogOut
ve Sunucu tarafında İşlevi çağırabilirsiniz , bunu kod projesinde bir yerde gördüm, umarım yardımcı olur. Yalnızca bazı kullanıcıları oturumdan çıkarmaya / öldürmeye zorlamak istiyorsanız, yalnızca bu bağlantıyı geçin ve yalnızca bu bağlantıyı öldürün.
Sunucu Tarafı
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();
}
}
}
}
Müşteri Tarafı
// 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();
});
Seçenek 3 ile güncellendi : isteğe bağlı olarak ... diğer çözümler zaman aşımına dayanır, ancak bağlantıyı kendiniz atarak doğrudan da zorlayabilirsiniz
SignalR kodunu açtım ve içinde DisposeAndRemoveAsync
bir istemci bağlantısının sonlandırıldığını görebilirsiniz .
1- DisposeAndRemoveAsync
Bağlantınızı değiştirebilir veya bağlantı kurabilirsiniz.
2- Sonra ara 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);
}
}
Dikkat, bu yapıldığında kendiniz temizleyin.