LobbyServer.RpcFile.FileManager.GetFileByte C# (CSharp) Method

GetFileByte() public method

public GetFileByte ( int AcctId, int id, bool login, string WorldName, string CharName ) : byte[]
AcctId int
id int
login bool
WorldName string
CharName string
return byte[]
        public byte[] GetFileByte(int AcctId, int id, bool login, string WorldName, string CharName)
        {
            Log.Info("FileManager", "GetFileByte: ID = " + id);
            ConfigFile Conf = GetFileClient(AcctId).GetConf(GetFileName(id, login), WorldName, CharName, false);
            if (Conf != null) return Conf.TotalFile;
            else return new byte[0];
        }