DistrictServer.World.DW.RegisterDistrict.RegisterDistrict C# (CSharp) Méthode

RegisterDistrict() public méthode

public RegisterDistrict ( Byte type, Byte Id, Byte language, String password, String IP, String Port, String Token ) : System
type Byte
Id Byte
language Byte
password String
IP String
Port String
Token String
Résultat System
        public RegisterDistrict(Byte type, Byte Id, Byte language, String password, String IP, String Port, String Token) : base()
        {
            WriteByte((Byte)OpCodes.WD_REGISTER_DISTRICT);
            WriteByte(type);
            WriteByte(Id);
            WriteByte(language);
            WriteS(password);
            WriteS(IP);
            WriteS(Port);
            WriteS(Token);
        }
    }
RegisterDistrict