Image Transfer via Remoting

How to transfer image using .Net Remoting from Server application to Client
in C#.
[88 byte] By [Tanny] at [2007-12-17]
# 1
Just create a remoting object as you normally would and you can either return or pass as a parameter either a Bitmap or a Image object. Someting like:

MyRemoteObject.TransferImage((Bitmap)object);

where the declaratino of the method is:

public bool TransferImage(Bitmap bmp)

You can use this sample as a base for getting a remoting infrastructure:

How to create a remote server by using Microsoft Visual C# .NET
http://support.microsoft.com/default.aspx?scid=kb;en-us;307445

RobertGruen at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...