16 lines
467 B
C#
16 lines
467 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.Extensions.WebSockets.Internal.Tests
|
|
{
|
|
public class WebSocketConnectionSummary
|
|
{
|
|
public IList<WebSocketFrame> Received { get; }
|
|
public WebSocketCloseResult CloseResult { get; }
|
|
|
|
public WebSocketConnectionSummary(IList<WebSocketFrame> received, WebSocketCloseResult closeResult)
|
|
{
|
|
Received = received;
|
|
CloseResult = closeResult;
|
|
}
|
|
}
|
|
} |