SafeNet/SN_Server/ServerMSGS/SM_ARS.cs

17 lines
402 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SN_Server.ServerMSGS
{
class SM_ARS
{
public static byte[] GenARSMsg(string suid, string arsState)
{
string msg = ServerMSG.GenMsg(0xB010, ServerConnector.serialNr,suid+ "/" + arsState);
return System.Text.Encoding.ASCII.GetBytes(msg);
}
}
}