www.pudn.com > WebGisMapx.rar > MapService.cs
using System;
using System.Drawing;
namespace WebGis
{
public class MapService : MarshalByRefObject, IMapRender
{
public MapService()
{
}
public byte[] GetMap(string filename)
{
return EntryPoint.frmServer.buildMap(filename);
}
}
}