Пример #1
0
        /// <summary>
        /// Validate that the put() or get() was successful
        /// </summary>
        private void  ValidateTransfer()
        {
            // check the control response
            string[] validCodes = new string[] { "226", "250" };
            string   reply      = control.ReadReply();

            lastValidReply = control.ValidateReply(reply, validCodes);
        }