Reputation: 103
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
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