C# Class SipSharp.Transports.Parser.BodyEventArgs

Arguments used when more body bytes have come.
Inheritance: System.EventArgs
显示文件 Open project: jgauffin/SipSharp Class Usage Examples

Public Methods

Method Description
BodyEventArgs ( ) : System

Initializes a new instance of the BodyEventArgs class.

BodyEventArgs ( byte buffer, int offset, int count ) : System

Initializes a new instance of the BodyEventArgs class.

Private Methods

Method Description
AssignInternal ( byte bytes, int offset, int count ) : void

Method Details

BodyEventArgs() public method

Initializes a new instance of the BodyEventArgs class.
public BodyEventArgs ( ) : System
return System

BodyEventArgs() public method

Initializes a new instance of the BodyEventArgs class.
public BodyEventArgs ( byte buffer, int offset, int count ) : System
buffer byte buffer that contains the received bytes.
offset int offset in buffer where to start processing.
count int number of bytes from that should be parsed.
return System