You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OMS.NET/Instructs/GetMapLayerInstruct.cs

31 lines
607 B
C#

using OMS.NET.Common;
namespace OMS.NET.Instructs
{
public class GetMapLayerInstruct : Instruct
{
public GetMapLayerInstruct()
{
Type = "get_mapLayer";
}
public override Task Handler(string wsid)
{
return Task.Run(() =>
{
if (GlobalArea.LoginCheckByID(wsid))
{
}
});
}
}
public class SendMapLayerInstruct : Instruct
{
public SendMapLayerInstruct()
{
Type = "send_mapLayer";
}
}
}