Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / xsp / System / Web / Extensions / Script / Serialization / JavaScriptString.cs / 1 / 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 NullableGetNextNonEmptyChar() { 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--; } } private static void AppendCharAsUnicode(StringBuilder builder, char c) { builder.Append("\\u"); builder.AppendFormat(CultureInfo.InvariantCulture, "{0:x4}", (int)c); } [SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity", Justification="Method would be more complex if split into separate pieces.")] internal static string QuoteString(string value) { StringBuilder b = null; if (String.IsNullOrEmpty(value)) { return String.Empty; } int startIndex = 0; int count = 0; for (int i = 0; i < value.Length; i++) { char c = value[i]; // Append the unhandled characters (that do not require special treament) // to the string builder when special characters are detected. if (c == '\r' || c == '\t' || c == '\"' || c == '\'' || c == '<' || c == '>' || c == '\\' || c == '\n' || c == '\b' || c == '\f' || c < ' ') { if (b == null) { b = new StringBuilder(value.Length + 5); } if (count > 0) { b.Append(value, startIndex, count); } startIndex = i+1; count = 0; } switch (c) { case '\r': b.Append("\\r"); break; case '\t': b.Append("\\t"); break; case '\"': b.Append("\\\""); break; case '\\': b.Append("\\\\"); break; case '\n': b.Append("\\n"); break; case '\b': b.Append("\\b"); break; case '\f': b.Append("\\f"); break; case '\'': case '>': case '<': AppendCharAsUnicode(b, c); break; default: if (c < ' ') { AppendCharAsUnicode(b, c); } else { count++; } break; } } if (b == null) { return value; } if (count > 0) { b.Append(value, startIndex, count); } return b.ToString(); } internal static string QuoteString(string value, bool addQuotes) { string s = QuoteString(value); if (addQuotes) { s = "\"" + s + "\""; } return s; } 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. //------------------------------------------------------------------------------ // // 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 NullableGetNextNonEmptyChar() { 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--; } } private static void AppendCharAsUnicode(StringBuilder builder, char c) { builder.Append("\\u"); builder.AppendFormat(CultureInfo.InvariantCulture, "{0:x4}", (int)c); } [SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity", Justification="Method would be more complex if split into separate pieces.")] internal static string QuoteString(string value) { StringBuilder b = null; if (String.IsNullOrEmpty(value)) { return String.Empty; } int startIndex = 0; int count = 0; for (int i = 0; i < value.Length; i++) { char c = value[i]; // Append the unhandled characters (that do not require special treament) // to the string builder when special characters are detected. if (c == '\r' || c == '\t' || c == '\"' || c == '\'' || c == '<' || c == '>' || c == '\\' || c == '\n' || c == '\b' || c == '\f' || c < ' ') { if (b == null) { b = new StringBuilder(value.Length + 5); } if (count > 0) { b.Append(value, startIndex, count); } startIndex = i+1; count = 0; } switch (c) { case '\r': b.Append("\\r"); break; case '\t': b.Append("\\t"); break; case '\"': b.Append("\\\""); break; case '\\': b.Append("\\\\"); break; case '\n': b.Append("\\n"); break; case '\b': b.Append("\\b"); break; case '\f': b.Append("\\f"); break; case '\'': case '>': case '<': AppendCharAsUnicode(b, c); break; default: if (c < ' ') { AppendCharAsUnicode(b, c); } else { count++; } break; } } if (b == null) { return value; } if (count > 0) { b.Append(value, startIndex, count); } return b.ToString(); } internal static string QuoteString(string value, bool addQuotes) { string s = QuoteString(value); if (addQuotes) { s = "\"" + s + "\""; } return s; } 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
- LayoutUtils.cs
- RectangleHotSpot.cs
- PropertyGridCommands.cs
- WebPartEditVerb.cs
- ServerValidateEventArgs.cs
- BitmapImage.cs
- ToolboxItem.cs
- DriveInfo.cs
- DbConnectionClosed.cs
- CopyCodeAction.cs
- TextHidden.cs
- WebBrowserEvent.cs
- ProcessHostMapPath.cs
- DiscoveryDefaults.cs
- AdapterUtil.cs
- StorageConditionPropertyMapping.cs
- ResourceExpression.cs
- DelimitedListTraceListener.cs
- RewritingSimplifier.cs
- _CookieModule.cs
- IdleTimeoutMonitor.cs
- StateMachineExecutionState.cs
- ToolStripScrollButton.cs
- AppDomainShutdownMonitor.cs
- RecognizerBase.cs
- HttpCapabilitiesBase.cs
- AuthenticateEventArgs.cs
- AnnotationResourceCollection.cs
- ThicknessKeyFrameCollection.cs
- AxHost.cs
- ReadOnlyCollectionBase.cs
- InputQueue.cs
- TextControlDesigner.cs
- UriTemplateMatchException.cs
- EditorAttributeInfo.cs
- SQLChars.cs
- SafeRightsManagementHandle.cs
- EventRoute.cs
- FunctionDetailsReader.cs
- TemplateLookupAction.cs
- OutgoingWebResponseContext.cs
- InternalConfigSettingsFactory.cs
- HashHelper.cs
- DelegateSerializationHolder.cs
- CheckBoxRenderer.cs
- ColorDialog.cs
- EpmSyndicationContentSerializer.cs
- QuaternionIndependentAnimationStorage.cs
- NavigationProperty.cs
- DirectoryObjectSecurity.cs
- ColorContextHelper.cs
- UserControlBuildProvider.cs
- ProfileServiceManager.cs
- SingleQueryOperator.cs
- ByteStorage.cs
- WindowsAuthenticationEventArgs.cs
- FamilyTypefaceCollection.cs
- AssertUtility.cs
- ZoneMembershipCondition.cs
- UniqueID.cs
- EditableLabelControl.cs
- XPathException.cs
- ExpressionVisitor.cs
- IdentitySection.cs
- FieldToken.cs
- Pair.cs
- Rectangle.cs
- IgnoreFileBuildProvider.cs
- DummyDataSource.cs
- Message.cs
- CustomWebEventKey.cs
- CommandCollectionEditor.cs
- DataBoundControlAdapter.cs
- LocalizedNameDescriptionPair.cs
- MailBnfHelper.cs
- XmlSchemas.cs
- base64Transforms.cs
- xml.cs
- ParsedAttributeCollection.cs
- OdbcConnectionHandle.cs
- MimeTypePropertyAttribute.cs
- RotationValidation.cs
- DataBinding.cs
- NetworkStream.cs
- CodeVariableReferenceExpression.cs
- DataBoundControlActionList.cs
- ContainerFilterService.cs
- InheritanceContextHelper.cs
- DataGridViewTopRowAccessibleObject.cs
- BitmapEncoder.cs
- EntityContainerRelationshipSet.cs
- XsdValidatingReader.cs
- Funcletizer.cs
- TTSEvent.cs
- CodeDomSerializerBase.cs
- QueryableDataSourceHelper.cs
- QuaternionRotation3D.cs
- PreviousTrackingServiceAttribute.cs
- RegexReplacement.cs
- MaskedTextProvider.cs