Table of Contents

Class ReceiveMessageFrame

Namespace
System.Net.WebSockets
Assembly
System.Net.WebSockets.dll

The Receive Message Frame

public class ReceiveMessageFrame : MessageFrame
Inheritance
ReceiveMessageFrame
Inherited Members
Extension Methods

Constructors

ReceiveMessageFrame()

public ReceiveMessageFrame()

Properties

Buffer

Buffer holding the message content.

public byte[] Buffer { get; set; }

Property Value

byte[]

Fragmentation

Indicates if the message is fragmented. And what fragment is received.

public FragmentationType Fragmentation { get; set; }

Property Value

FragmentationType

IsFragmented

Indicates if the message is fragmented.

public bool IsFragmented { get; }

Property Value

bool

MessageLength

The content length of the message in number of bytes.

public int MessageLength { get; set; }

Property Value

int