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

nextCaptureGivenAuthResponse() public method

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

                if (!captureGivenAuthResponseReader.ReadToFollowing("captureGivenAuthResponse"))
                {
                    captureGivenAuthResponseReader.Close();
                }

                return i;
            }

            return null;
        }
batchResponse