Microsoft.Protocols.TestTools.StackSdk.BranchCache.Pchc.PCHCServer.SendPackage C# (CSharp) Method

SendPackage() public method

Send Reponse Message to the client.
public SendPackage ( RESPONSE_MESSAGE responseMessage ) : void
responseMessage RESPONSE_MESSAGE The response message.
return void
        public void SendPackage(RESPONSE_MESSAGE responseMessage)
        {
            this.SendByte(EncodeMessage.EncodeResponseMessage(responseMessage));

            if (this.logger != null)
            {
                this.logger.AddDebug("Pchc response message is sent successfully.");
            }
        }