示例#1
0
        /// <inheritdoc cref="AbstractCommand.CheckResponse" />
        public override void CheckResponse
        (
            ServerResponse response
        )
        {
            Sure.NotNull(response, nameof(response));

            // Ignore the result
            response.RefuseAnReturnCode();
        }
示例#2
0
        /// <summary>
        /// Check the server response.
        /// </summary>
        public override void CheckResponse
        (
            ServerResponse response
        )
        {
            Sure.NotNull(response, nameof(response));

            // Don't check: there's no return code
            response.RefuseAnReturnCode();
        }