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