15 lines
352 B
C#
15 lines
352 B
C#
using System;
|
|
|
|
namespace Microsoft.AspNetCore.Sockets
|
|
{
|
|
public class ConnectionState
|
|
{
|
|
public Connection Connection { get; set; }
|
|
|
|
// These are used for long polling mostly
|
|
public Action Close { get; set; }
|
|
public DateTimeOffset LastSeen { get; set; }
|
|
public bool Active { get; set; } = true;
|
|
}
|
|
}
|