Aura.Login.Network.Send.NameCheckR C# (CSharp) Method

NameCheckR() public static method

Sends NameCheckR to client.
public static NameCheckR ( Aura.Login.Network.LoginClient client, NameCheckResult result ) : void
client Aura.Login.Network.LoginClient
result NameCheckResult
return void
		public static void NameCheckR(LoginClient client, NameCheckResult result)
		{
			var response = new Packet(Op.NameCheckR, MabiId.Login);
			response.PutByte(result == NameCheckResult.Okay);
			response.PutByte((byte)result);

			client.Send(response);
		}