Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Channels / JavascriptXmlWriterWrapper.cs / 1305376 / JavascriptXmlWriterWrapper.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Globalization; using System.IO; using System.Text; using System.Xml; class JavascriptXmlWriterWrapper : XmlDictionaryWriter { Encoding encoding; Stream stream; XmlDictionaryWriter xmlJsonWriter; byte[] encodedClosingFunctionCall; public JavascriptXmlWriterWrapper(Encoding encoding) { this.encoding = encoding; this.encodedClosingFunctionCall = this.encoding.GetBytes(");"); } public JavascriptCallbackResponseMessageProperty JavascriptResponseMessageProperty { get; set; } public XmlDictionaryWriter XmlJsonWriter { get { return this.xmlJsonWriter; } } public override void Close() { this.xmlJsonWriter.Close(); } public override void Flush() { this.xmlJsonWriter.Flush(); } public override string LookupPrefix(string ns) { return this.xmlJsonWriter.LookupPrefix(ns); } public override void WriteBase64(byte[] buffer, int index, int count) { this.xmlJsonWriter.WriteBase64(buffer, index, count); } public override void WriteCData(string text) { this.xmlJsonWriter.WriteCData(text); } public override void WriteCharEntity(char ch) { this.xmlJsonWriter.WriteCharEntity(ch); } public override void WriteChars(char[] buffer, int index, int count) { this.xmlJsonWriter.WriteChars(buffer, index, count); } public override void WriteComment(string text) { this.xmlJsonWriter.WriteComment(text); } public override void WriteDocType(string name, string pubid, string sysid, string subset) { this.xmlJsonWriter.WriteDocType(name, pubid, sysid, subset); } public override void WriteEndAttribute() { this.xmlJsonWriter.WriteEndAttribute(); } public override void WriteEndDocument() { this.xmlJsonWriter.WriteEndDocument(); if (this.JavascriptResponseMessageProperty != null && !String.IsNullOrEmpty(this.JavascriptResponseMessageProperty.CallbackFunctionName)) { this.xmlJsonWriter.Flush(); if (this.JavascriptResponseMessageProperty.StatusCode != null && (int)this.JavascriptResponseMessageProperty.StatusCode != 200) { byte[] buffer = this.encoding.GetBytes(String.Format(CultureInfo.InvariantCulture, ",{0}", (int)this.JavascriptResponseMessageProperty.StatusCode)); this.stream.Write(buffer, 0, buffer.Length); } this.stream.Write(this.encodedClosingFunctionCall, 0, this.encodedClosingFunctionCall.Length); } } public override void WriteEndElement() { this.xmlJsonWriter.WriteEndElement(); } public override void WriteEntityRef(string name) { this.xmlJsonWriter.WriteEntityRef(name); } public override void WriteFullEndElement() { this.xmlJsonWriter.WriteFullEndElement(); } public override void WriteProcessingInstruction(string name, string text) { this.xmlJsonWriter.WriteProcessingInstruction(name, text); } public override void WriteRaw(string data) { this.xmlJsonWriter.WriteRaw(data); } public override void WriteRaw(char[] buffer, int index, int count) { this.xmlJsonWriter.WriteRaw(buffer, index, count); } public override void WriteStartAttribute(string prefix, string localName, string ns) { this.xmlJsonWriter.WriteStartAttribute(prefix, localName, ns); } public override void WriteStartDocument(bool standalone) { StartJsonMessage(); this.xmlJsonWriter.WriteStartDocument(standalone); } public override void WriteStartDocument() { StartJsonMessage(); this.xmlJsonWriter.WriteStartDocument(); } void StartJsonMessage() { if (this.JavascriptResponseMessageProperty != null && !String.IsNullOrEmpty(this.JavascriptResponseMessageProperty.CallbackFunctionName)) { byte[] buffer = this.encoding.GetBytes(String.Format(CultureInfo.InvariantCulture, "{0}(", this.JavascriptResponseMessageProperty.CallbackFunctionName)); this.stream.Write(buffer,0,buffer.Length); } } public override void WriteStartElement(string prefix, string localName, string ns) { this.xmlJsonWriter.WriteStartElement(prefix, localName, ns); } public override WriteState WriteState { get { return this.xmlJsonWriter.WriteState; } } public override void WriteString(string text) { this.xmlJsonWriter.WriteString(text); } public override void WriteSurrogateCharEntity(char lowChar, char highChar) { this.xmlJsonWriter.WriteSurrogateCharEntity(lowChar, highChar); } public override void WriteWhitespace(string ws) { this.xmlJsonWriter.WriteWhitespace(ws); } public void SetOutput(Stream stream, XmlDictionaryWriter writer) { this.stream = stream; this.xmlJsonWriter = writer; } } } // 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
- BreakSafeBase.cs
- TCPClient.cs
- Camera.cs
- StandardRuntimeEnumValidator.cs
- ObjectDataSourceDesigner.cs
- DeflateEmulationStream.cs
- Blend.cs
- ExpressionCopier.cs
- __Filters.cs
- SpnegoTokenProvider.cs
- TagMapCollection.cs
- RMEnrollmentPage2.cs
- ServicePoint.cs
- Storyboard.cs
- RootBuilder.cs
- DecimalStorage.cs
- RenamedEventArgs.cs
- updatecommandorderer.cs
- Opcode.cs
- SystemIPv4InterfaceProperties.cs
- HtmlInputImage.cs
- WindowsFormsHostAutomationPeer.cs
- AccessedThroughPropertyAttribute.cs
- CodeChecksumPragma.cs
- ReturnEventArgs.cs
- MappingSource.cs
- ValueChangedEventManager.cs
- DirectoryRootQuery.cs
- PathFigureCollectionConverter.cs
- SystemIcmpV4Statistics.cs
- RoutingBehavior.cs
- MaskedTextProvider.cs
- StylusPointPropertyInfoDefaults.cs
- ContextStaticAttribute.cs
- HttpPostedFile.cs
- AssemblyNameProxy.cs
- RoleGroupCollection.cs
- ServiceReference.cs
- XmlSerializer.cs
- ISFTagAndGuidCache.cs
- XmlSchemaAll.cs
- MILUtilities.cs
- GraphicsPathIterator.cs
- TcpWorkerProcess.cs
- Grant.cs
- Hyperlink.cs
- InternalDuplexChannelListener.cs
- ProtocolsSection.cs
- ConstructorNeedsTagAttribute.cs
- ManagementEventWatcher.cs
- EnlistmentTraceIdentifier.cs
- WebScriptServiceHostFactory.cs
- TreeNodeBinding.cs
- TypeUtil.cs
- OptimalTextSource.cs
- CodeDOMUtility.cs
- PriorityBinding.cs
- FactoryGenerator.cs
- SqlLiftWhereClauses.cs
- OdbcConnection.cs
- baseaxisquery.cs
- EventMap.cs
- COM2ExtendedTypeConverter.cs
- DataControlFieldCell.cs
- RoleManagerSection.cs
- ReturnEventArgs.cs
- ToolStripContainer.cs
- RectAnimationBase.cs
- Schedule.cs
- Helper.cs
- SqlDependencyUtils.cs
- ServiceObjectContainer.cs
- Renderer.cs
- DataKey.cs
- ThemeDirectoryCompiler.cs
- ViewGenerator.cs
- ConfigurationSettings.cs
- BitmapEffectOutputConnector.cs
- AbstractExpressions.cs
- PersonalizationProvider.cs
- UpdateEventArgs.cs
- SecureUICommand.cs
- MarkupCompiler.cs
- LayoutManager.cs
- CommonDialog.cs
- ByeMessageCD1.cs
- WebException.cs
- WebPartEditorOkVerb.cs
- ListViewDeletedEventArgs.cs
- ProcessManager.cs
- MappingMetadataHelper.cs
- SqlNode.cs
- SpeechSeg.cs
- WorkflowOperationFault.cs
- SafeHGlobalHandleCritical.cs
- PagerSettings.cs
- AQNBuilder.cs
- LogicalExpr.cs
- ExpressionValueEditor.cs
- DataReceivedEventArgs.cs