Send() public méthode

public Send ( byte data ) : int
data byte
Résultat int
Exemple #1
0
 public void requestInventory()
 {
     Console.WriteLine("inventory requested: " + inventoryRequested);
     if (!inventoryRequested)
     {
         inventoryRequested = true;
         TheTCPWrapper.Send(CommandCreator.SEND_MY_INVENTORY());
     }
 }