1 write to _s
System.Web.Extensions (1)
Script\Serialization\JavaScriptString.cs (1)
18
_s
= s;
13 references to _s
System.Web.Extensions (13)
Script\Serialization\JavaScriptString.cs (13)
22
while (
_s
.Length > _index) {
23
char c =
_s
[_index++];
33
if (
_s
.Length > _index) {
34
return
_s
[_index++];
41
if (
_s
.Length >= _index + count) {
42
string result =
_s
.Substring(_index, count);
65
if (
_s
.Length > _index) {
66
return
_s
.Substring(_index);
73
return message + " (" + _index + "): " +
_s
;
77
if (
_s
.Length > _index) {
78
return
_s
.IndexOf(substr, _index, StringComparison.CurrentCulture) - _index;
85
if (
_s
.Length > _index + length) {
86
return
_s
.Substring(_index, length);