How to send object through NamedPipe in .NET 3.5?

kyrisu picture kyrisu · Jul 26, 2009 · Viewed 9.7k times · Source

Can you tell me what's the best way to send objects through NamedPipes in .net 3.5?

Answer

Arsen Mkrtchyan picture Arsen Mkrtchyan · Jul 26, 2009

Serialize your object by XmlSerializer than send it as a text and deserialize in the other side, or use WCF named pipes binding as Remus suggests