Litle.Sdk.batchResponse.nextAuthReversalResponse C# (CSharp) Method

nextAuthReversalResponse() public method

public nextAuthReversalResponse ( ) : authReversalResponse
return authReversalResponse
        public virtual authReversalResponse nextAuthReversalResponse()
        {
            if (authReversalResponseReader.ReadState != ReadState.Closed)
            {
                string response = authReversalResponseReader.ReadOuterXml();
                XmlSerializer serializer = new XmlSerializer(typeof(authReversalResponse));
                StringReader reader = new StringReader(response);
                authReversalResponse i = (authReversalResponse)serializer.Deserialize(reader);

                if (!authReversalResponseReader.ReadToFollowing("authReversalResponse"))
                {
                    authReversalResponseReader.Close();
                }

                return i;
            }

            return null;
        }
batchResponse