XmlSerializationReader.CheckReaderCount(Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Checks whether the deserializer has advanced.
This API supports the product infrastructure and is not intended to be used directly from your code.
protected:
void CheckReaderCount(int % whileIterations, int % readerCount);
protected void CheckReaderCount (ref int whileIterations, ref int readerCount);
member this.CheckReaderCount : int * int -> unit
Protected Sub CheckReaderCount (ByRef whileIterations As Integer, ByRef readerCount As Integer)
Parameters
- whileIterations
- Int32
The current count
in a while loop.
- readerCount
- Int32
The current ReaderCount.
Exceptions
The ReaderCount has not advanced.
Remarks
The method is used by generated classes and should not be directly invoked.
The CheckReaderCount method is used when the checkDeserializerAdvances
attribute of the <xmlSerializer>
configuration element is set to true
. For more information, see <xmlSerializer> Element.