System\Xml\Dom\DocumentXmlWriter.cs (97)
60State state; // current state
78settings.ConformanceLevel = (state == State.Prolog ? ConformanceLevel.Document : ConformanceLevel.Fragment);
437State StartState() {
448return State.Prolog;
451return State.Fragment;
458return State.Prolog;
461return State.Fragment;
465return State.Attribute;
469return State.Content;
472static State[] changeState = {
476State.Error, State.Error, State.Prolog, State.Content, State.Error,
478State.Error, State.Error, State.Error, State.Error, State.Error,
480State.Error, State.Error, State.Error, State.Error, State.Error,
482State.Error, State.Error, State.Prolog, State.Error, State.Error,
484State.Error, State.Error, State.Content, State.Content, State.Content,
486State.Error, State.Error, State.Error, State.Error, State.Content,
488State.Error, State.Error, State.Error, State.Error, State.Content,
490State.Error, State.Content, State.Error, State.Error, State.Content,
492State.Error, State.Error, State.Error, State.Error, State.Content,
494State.Error, State.Content, State.Error, State.Error, State.Content,
496State.Error, State.Error, State.Error, State.Error, State.Content,
498State.Error, State.Error, State.Error, State.Content, State.Content,
500State.Error, State.Error, State.Prolog, State.Content, State.Content,
502State.Error, State.Error, State.Prolog, State.Content, State.Content,
504State.Error, State.Error, State.Error, State.Content, State.Content,
506State.Error, State.Error, State.Prolog, State.Content, State.Content,
508State.Error, State.Error, State.Error, State.Content, State.Content,
512state = changeState[(int)method * (int)State.Last + (int)state];
513if (state == State.Error) {