28 references to ReadState
System.Runtime.Serialization (28)
System\Xml\XmlMtomReader.cs (28)
2583ReadState readState = ReadState.ReadName; 2613readState = ReadState.EOF; 2621while (readState != ReadState.EOF) 2652case ReadState.ReadName: 2659goto case ReadState.SkipWS; 2675goto case ReadState.EOF; 2683readState = ReadState.ReadName; 2685case ReadState.SkipWS: 2688goto case ReadState.ReadValue; 2689readState = ReadState.SkipWS; 2691case ReadState.ReadValue: 2699goto case ReadState.ReadLF; 2707readState = ReadState.ReadValue; 2709case ReadState.ReadLF: 2715goto case ReadState.ReadWS; 2717readState = ReadState.ReadLF; 2719case ReadState.ReadWS: 2724readState = ReadState.ReadName; 2728goto case ReadState.ReadValue; 2730readState = ReadState.ReadWS; 2732case ReadState.EOF: 2733readState = ReadState.EOF; 2747if (readState != ReadState.ReadWS && readState != ReadState.ReadValue) 2750readState = ReadState.EOF; 2762if (readState != ReadState.EOF) 2766readState = ReadState.ReadName;