1 write to source
System.Data (1)
cdf\src\NetFx40\Tools\Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\SourceTextScanner.cs (1)
29this.source = source;
8 references to source
System.Data (8)
cdf\src\NetFx40\Tools\Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\SourceTextScanner.cs (8)
70SharedFx.Assert(index >= 0 && index < this.source.Length, "index out of range"); 120SharedFx.Assert(index >= 0 && index < this.source.Length, "invalid index"); 136if (startIndex >= this.source.Length) 168if (index < 0 || index >= this.source.Length) 174while (index < this.source.Length) 176char currentChar = this.source[index]; 180if (index + 1 < this.source.Length && this.source[index + 1] == NewLine)