2 writes to serviceText
System.ServiceModel.Activation (2)
System\ServiceModel\Activation\ServiceParser.cs (2)
126this.serviceText = serviceText; 218this.serviceText = reader.ReadToEnd();
7 references to serviceText
System.ServiceModel.Activation (7)
System\ServiceModel\Activation\ServiceParser.cs (7)
391if (this.serviceText.IndexOf('>') == -1) 400match = directiveRegex.Match(this.serviceText, textPos); 407lineNumber += ServiceParserUtilities.LineCount(this.serviceText, textPos, match.Index); 418lineNumber += ServiceParserUtilities.LineCount(this.serviceText, textPos, match.Index + match.Length); 423int newlineIndex = this.serviceText.LastIndexOfAny(newlineChars, textPos - 1); 434string remainingText = this.serviceText.Substring(textPos); 447Exception parseException = CreateParseException(e, this.serviceText);