Rob
Rob

Reputation: 103

.net 3.5 message framing

We have message framing working by using a lengh prefix but using .NET 2.0 beginSend/BeginReceive.

Is message framing any different in 3.5, if so how should we implement it using the new framework?

Are there any useable examples out there which focus purely on message framing using 3.5?

Many thanks

Upvotes: 0

Views: 595

Answers (1)

Stephen Cleary
Stephen Cleary

Reputation: 457472

Message framing is an attribute of your application protocol. It doesn't have anything to do with the .NET version you're running on.

I have an example of message framing on my blog, which works for any stream of data in any .NET framework version.

Upvotes: 1

Related Questions