TlsSession
Base interface for a carrier object for a TLS session.
namespace Org.BouncyCastle.Tls
{
public interface TlsSession
{
byte[] SessionID { get; }
bool IsResumable { get; }
SessionParameters ExportSessionParameters();
void Invalidate();
}
}