Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / XmlBuffer.cs / 1 / XmlBuffer.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- #define BINARY namespace System.ServiceModel { using System.IO; using System.Xml; using System.Text; using System.Collections.Generic; using System.Diagnostics; using System.ServiceModel.Channels; class XmlBuffer { Listsections; byte[] buffer; int offset; BufferedOutputStream stream; BufferState bufferState; XmlDictionaryWriter writer; XmlDictionaryReaderQuotas quotas; enum BufferState { Created, Writing, Reading, } struct Section { int offset; int size; XmlDictionaryReaderQuotas quotas; public Section(int offset, int size, XmlDictionaryReaderQuotas quotas) { this.offset = offset; this.size = size; this.quotas = quotas; } public int Offset { get { return this.offset; } } public int Size { get { return this.size; } } public XmlDictionaryReaderQuotas Quotas { get { return this.quotas; } } } public XmlBuffer(int maxBufferSize) { if (maxBufferSize < 0) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("maxBufferSize", maxBufferSize, SR.GetString(SR.ValueMustBeNonNegative))); int initialBufferSize = Math.Min(512, maxBufferSize); stream = new BufferedOutputStream(SR.XmlBufferQuotaExceeded, initialBufferSize, maxBufferSize, BufferManager.CreateBufferManager(0, int.MaxValue)); sections = new List (1); } public int BufferSize { get { DiagnosticUtility.DebugAssert(bufferState == BufferState.Reading, "Buffer size shuold only be retrieved during Reading state"); return buffer.Length; } } public int SectionCount { get { return this.sections.Count; } } public XmlDictionaryWriter OpenSection(XmlDictionaryReaderQuotas quotas) { if (bufferState != BufferState.Created) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateInvalidStateException()); bufferState = BufferState.Writing; this.quotas = new XmlDictionaryReaderQuotas(); quotas.CopyTo(this.quotas); if (this.writer == null) { this.writer = XmlDictionaryWriter.CreateBinaryWriter(stream, XD.Dictionary, null, true); } else { ((IXmlBinaryWriterInitializer)this.writer).SetOutput(stream, XD.Dictionary, null, true); } return this.writer; } public void CloseSection() { if (bufferState != BufferState.Writing) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateInvalidStateException()); this.writer.Close(); bufferState = BufferState.Created; int size = (int)stream.Length - offset; sections.Add(new Section(offset, size, this.quotas)); offset += size; } public void Close() { if (bufferState != BufferState.Created) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateInvalidStateException()); bufferState = BufferState.Reading; int bufferSize; buffer = stream.ToArray(out bufferSize); writer = null; stream = null; } Exception CreateInvalidStateException() { return new InvalidOperationException(SR.GetString(SR.XmlBufferInInvalidState)); } public XmlDictionaryReader GetReader(int sectionIndex) { if (bufferState != BufferState.Reading) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateInvalidStateException()); Section section = sections[sectionIndex]; XmlDictionaryReader reader = XmlDictionaryReader.CreateBinaryReader(buffer, section.Offset, section.Size, XD.Dictionary, section.Quotas, null, null); reader.MoveToContent(); return reader; } public void WriteTo(int sectionIndex, XmlWriter writer) { if (bufferState != BufferState.Reading) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateInvalidStateException()); XmlDictionaryReader reader = GetReader(sectionIndex); try { writer.WriteNode(reader, false); } finally { reader.Close(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FlowDecisionLabelFeature.cs
- Geometry3D.cs
- PingOptions.cs
- RadioButton.cs
- ReflectionTypeLoadException.cs
- PeerTransportSecuritySettings.cs
- PolyBezierSegment.cs
- ToolStripDropDownMenu.cs
- prefixendpointaddressmessagefilter.cs
- MaskedTextProvider.cs
- ProfileSettings.cs
- PolyLineSegment.cs
- MetadataElement.cs
- ToolStripItemClickedEventArgs.cs
- XPathAxisIterator.cs
- SmtpTransport.cs
- RegistryConfigurationProvider.cs
- DataComponentGenerator.cs
- VisualStyleRenderer.cs
- DateTimeConverter.cs
- tabpagecollectioneditor.cs
- UnsafeCollabNativeMethods.cs
- RequestTimeoutManager.cs
- InkCollectionBehavior.cs
- ShaderEffect.cs
- BitmapEffectState.cs
- PrintDialog.cs
- ScopeCompiler.cs
- Unit.cs
- StorageEndPropertyMapping.cs
- ParenthesizePropertyNameAttribute.cs
- LoginViewDesigner.cs
- FixedSOMTextRun.cs
- HtmlControlPersistable.cs
- DataListItem.cs
- Int32Storage.cs
- ByteStack.cs
- AnnotationComponentManager.cs
- PropertyValue.cs
- RunInstallerAttribute.cs
- CoTaskMemHandle.cs
- EventLogRecord.cs
- ByteAnimationUsingKeyFrames.cs
- XsdDataContractExporter.cs
- FunctionDescription.cs
- BufferedStream.cs
- PersonalizationAdministration.cs
- XamlRtfConverter.cs
- BehaviorDragDropEventArgs.cs
- DataMember.cs
- _SSPISessionCache.cs
- RSACryptoServiceProvider.cs
- ProjectionCamera.cs
- HtmlTableRow.cs
- XsdValidatingReader.cs
- BrowserCapabilitiesFactory35.cs
- AdapterDictionary.cs
- XPathArrayIterator.cs
- HttpProfileBase.cs
- AnnotationService.cs
- VisualTreeHelper.cs
- EncoderExceptionFallback.cs
- IDQuery.cs
- SqlSupersetValidator.cs
- PageSetupDialog.cs
- RuleSettings.cs
- WebBrowserNavigatedEventHandler.cs
- CodeTypeReferenceExpression.cs
- ForwardPositionQuery.cs
- OperationContextScope.cs
- DrawingGroup.cs
- XmlSchemaAny.cs
- DecoratedNameAttribute.cs
- MsiStyleLogWriter.cs
- GeneralTransform3D.cs
- odbcmetadatafactory.cs
- _NetRes.cs
- _Events.cs
- AutomationAttributeInfo.cs
- StatusBarAutomationPeer.cs
- ImageButton.cs
- Int64AnimationBase.cs
- InstanceDataCollectionCollection.cs
- CodeDomDesignerLoader.cs
- ContainerParagraph.cs
- Metadata.cs
- Delegate.cs
- DataGridViewColumnConverter.cs
- SqlParameterizer.cs
- PageCache.cs
- DataGridViewImageCell.cs
- ParseElementCollection.cs
- FontDriver.cs
- XmlSchemaRedefine.cs
- SystemIPInterfaceStatistics.cs
- DynamicDocumentPaginator.cs
- AssociationTypeEmitter.cs
- StylusSystemGestureEventArgs.cs
- SqlBuilder.cs
- PointAnimationBase.cs