Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / Script / Serialization / JavaScriptString.cs / 1305376 / JavaScriptString.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.Script.Serialization {
using System;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Text;
internal class JavaScriptString {
private string _s;
private int _index;
internal JavaScriptString(string s) {
_s = s;
}
internal Nullable GetNextNonEmptyChar() {
while (_s.Length > _index) {
char c = _s[_index++];
if (!Char.IsWhiteSpace(c)) {
return c;
}
}
return null;
}
internal Nullable MoveNext() {
if (_s.Length > _index) {
return _s[_index++];
}
return null;
}
internal string MoveNext(int count) {
if (_s.Length >= _index + count) {
string result = _s.Substring(_index, count);
_index += count;
return result;
}
return null;
}
internal void MovePrev() {
if (_index > 0) {
_index--;
}
}
internal void MovePrev(int count) {
while (_index > 0 && count > 0) {
_index--;
count--;
}
}
public override string ToString() {
if (_s.Length > _index) {
return _s.Substring(_index);
}
return String.Empty;
}
internal string GetDebugString(string message) {
return message + " (" + _index + "): " + _s;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MemoryResponseElement.cs
- FrameworkEventSource.cs
- ReadOnlyAttribute.cs
- RawTextInputReport.cs
- ADMembershipUser.cs
- DataGridLinkButton.cs
- Path.cs
- CodeMemberEvent.cs
- RegexRunner.cs
- AttachedAnnotationChangedEventArgs.cs
- OletxResourceManager.cs
- _SSPISessionCache.cs
- IIS7ConfigurationLoader.cs
- HtmlLink.cs
- CheckBoxStandardAdapter.cs
- PagedDataSource.cs
- DataGridViewHeaderCell.cs
- ActivationArguments.cs
- Util.cs
- SortFieldComparer.cs
- SqlCacheDependencyDatabase.cs
- LOSFormatter.cs
- BCLDebug.cs
- SamlAuthorizationDecisionStatement.cs
- WebContext.cs
- ListViewUpdateEventArgs.cs
- UpDownEvent.cs
- HttpClientProtocol.cs
- WebPartEditVerb.cs
- bindurihelper.cs
- SafeProcessHandle.cs
- ContextStack.cs
- InfiniteIntConverter.cs
- DataGridCell.cs
- ListControlActionList.cs
- RootBrowserWindow.cs
- EndPoint.cs
- SignatureHelper.cs
- Version.cs
- WindowsStatic.cs
- MetadataArtifactLoaderComposite.cs
- MethodBuilderInstantiation.cs
- ImportOptions.cs
- ItemCollectionEditor.cs
- DockAndAnchorLayout.cs
- Animatable.cs
- TimeSpanFormat.cs
- SiteOfOriginContainer.cs
- SqlProcedureAttribute.cs
- QueryStatement.cs
- TimeEnumHelper.cs
- Types.cs
- AutoCompleteStringCollection.cs
- cache.cs
- InheritanceAttribute.cs
- SmiXetterAccessMap.cs
- CheckedListBox.cs
- ConnectorEditor.cs
- WebPartCatalogCloseVerb.cs
- GroupBoxRenderer.cs
- DesignerOptionService.cs
- CrossAppDomainChannel.cs
- AsyncOperationManager.cs
- SqlCachedBuffer.cs
- SourceFileInfo.cs
- Scanner.cs
- SoapEnumAttribute.cs
- XmlAutoDetectWriter.cs
- QueryTaskGroupState.cs
- ImageMetadata.cs
- TextElementAutomationPeer.cs
- OrderByLifter.cs
- ValidatorUtils.cs
- BooleanAnimationUsingKeyFrames.cs
- OpCodes.cs
- InvalidComObjectException.cs
- CriticalExceptions.cs
- WebPartVerb.cs
- QilInvokeEarlyBound.cs
- PatternMatcher.cs
- DataListCommandEventArgs.cs
- StrongBox.cs
- Utility.cs
- ToolStripTextBox.cs
- SecurityValidationBehavior.cs
- HostAdapter.cs
- CompModSwitches.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- RequestSecurityToken.cs
- WebHttpSecurity.cs
- IdentityHolder.cs
- SectionRecord.cs
- GeneratedView.cs
- UICuesEvent.cs
- VersionedStream.cs
- Style.cs
- XmlILCommand.cs
- HttpException.cs
- ScriptingWebServicesSectionGroup.cs
- DurableOperationAttribute.cs