18 references to AttributeParseState
System.Web.Mobile (18)
UI\MobileControls\LiteralTextParser.cs (18)
445AttributeParseState state = AttributeParseState.StartingAttributeName; 447while (attrPos <= attrFinish && state != AttributeParseState.Error) 466case AttributeParseState.StartingAttributeName: 474state = AttributeParseState.ReadingAttributeName; 478case AttributeParseState.ReadingAttributeName: 483state = AttributeParseState.ReadingEqualSign; 487state = AttributeParseState.Error; 495case AttributeParseState.ReadingEqualSign: 499state = AttributeParseState.StartingAttributeValue; 504state = AttributeParseState.Error; 508case AttributeParseState.StartingAttributeValue: 512state = AttributeParseState.Error; 525state = AttributeParseState.ReadingAttributeValue; 528case AttributeParseState.ReadingAttributeValue: 534state = AttributeParseState.Error; 548state = AttributeParseState.StartingAttributeName; 562if (state == AttributeParseState.Error)