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

nextPhysicalCheckCreditResponse() public method

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

                if (!physicalCheckCreditResponseReader.ReadToFollowing("physicalCheckCreditResponse"))
                {
                    physicalCheckCreditResponseReader.Close();
                }

                return i;
            }

            return null;
        }
batchResponse