BonCodeAJP13.BonCodeAJP13ServerConnection.AddPacketToSendQueue C# (CSharp) Method

AddPacketToSendQueue() public method

add a package to the collection of packets to be send to tomcat
public AddPacketToSendQueue ( BonCodeAJP13.BonCodeAJP13Packet singlePacket ) : void
singlePacket BonCodeAJP13.BonCodeAJP13Packet
return void
        public void AddPacketToSendQueue(BonCodeAJP13Packet singlePacket)
        {
            p_PacketsToSend.Add(singlePacket);
        }

Usage Example

 public void AddPacketToSendQueueTest()
 {
     BonCodeAJP13ServerConnection target = new BonCodeAJP13ServerConnection(); // TODO: Initialize to an appropriate value
     BonCodeAJP13Packet singlePacket = null; // TODO: Initialize to an appropriate value
     target.AddPacketToSendQueue(singlePacket);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
All Usage Examples Of BonCodeAJP13.BonCodeAJP13ServerConnection::AddPacketToSendQueue