Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Dispatcher / XmlSerializerObjectSerializer.cs / 2 / XmlSerializerObjectSerializer.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Dispatcher { using System; using System.Xml; using System.ServiceModel; using System.Xml.Serialization; using System.Collections.Generic; using System.Runtime.Serialization; using System.ServiceModel.Description; internal class XmlSerializerObjectSerializer : XmlObjectSerializer { XmlSerializer serializer; Type rootType; string rootName; string rootNamespace; bool isSerializerSetExplicit = false; internal XmlSerializerObjectSerializer(Type type) { Initialize(type, null /*rootName*/, null /*rootNamespace*/, null /*xmlSerializer*/); } internal XmlSerializerObjectSerializer(Type type, XmlQualifiedName qualifiedName, XmlSerializer xmlSerializer) { if (qualifiedName == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("qualifiedName"); } Initialize(type, qualifiedName.Name, qualifiedName.Namespace, xmlSerializer); } void Initialize(Type type, string rootName, string rootNamespace, XmlSerializer xmlSerializer) { if (type == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("type"); } this.rootType = type; this.rootName = rootName; this.rootNamespace = rootNamespace == null ? string.Empty : rootNamespace; this.serializer = xmlSerializer; if (this.serializer == null) { if (this.rootName == null) this.serializer = new XmlSerializer(type); else { XmlRootAttribute xmlRoot = new XmlRootAttribute(); xmlRoot.ElementName = this.rootName; xmlRoot.Namespace = this.rootNamespace; this.serializer = new XmlSerializer(type, xmlRoot); } } else isSerializerSetExplicit = true; //try to get rootName and rootNamespace from type since root name not set explicitly if (this.rootName == null) { XmlTypeMapping mapping = new XmlReflectionImporter().ImportTypeMapping(this.rootType); this.rootName = mapping.ElementName; this.rootNamespace = mapping.Namespace; } } public override void WriteObject(XmlDictionaryWriter writer, object graph) { if (this.isSerializerSetExplicit) this.serializer.Serialize(writer, new object[] { graph }); else this.serializer.Serialize(writer, graph); } public override void WriteStartObject(XmlDictionaryWriter writer, object graph) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException()); } public override void WriteObjectContent(XmlDictionaryWriter writer, object graph) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException()); } public override void WriteEndObject(XmlDictionaryWriter writer) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException()); } public override object ReadObject(XmlDictionaryReader reader, bool verifyObjectName) { if (this.isSerializerSetExplicit) { object [] deserializedObjects = (object[])this.serializer.Deserialize(reader); if (deserializedObjects != null && deserializedObjects.Length > 0) return deserializedObjects[0]; else return null; } else return this.serializer.Deserialize(reader); } public override bool IsStartObject(XmlDictionaryReader reader) { if (reader == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("reader")); reader.MoveToElement(); if (this.rootName != null) { return reader.IsStartElement(this.rootName, this.rootNamespace); } else { return reader.IsStartElement(); } } } } // 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
- NavigationProperty.cs
- BufferedWebEventProvider.cs
- SkinIDTypeConverter.cs
- UrlMappingsModule.cs
- _RequestCacheProtocol.cs
- ECDsa.cs
- SimpleRecyclingCache.cs
- DataColumnPropertyDescriptor.cs
- CodeMethodInvokeExpression.cs
- ProjectionPathSegment.cs
- _LocalDataStore.cs
- DataGridViewCellStyleChangedEventArgs.cs
- XmlReflectionMember.cs
- OutKeywords.cs
- ImportContext.cs
- CompensatableSequenceActivity.cs
- ColumnHeaderConverter.cs
- EntityClientCacheEntry.cs
- PixelFormatConverter.cs
- NetSectionGroup.cs
- LoginName.cs
- _CommandStream.cs
- AutomationPropertyInfo.cs
- LinqDataSourceDeleteEventArgs.cs
- RectAnimationUsingKeyFrames.cs
- XmlDeclaration.cs
- SchemaName.cs
- FunctionNode.cs
- MarkupExtensionParser.cs
- SqlCacheDependencySection.cs
- StreamingContext.cs
- SynchronizedInputHelper.cs
- ExceptionUtil.cs
- MetadataExchangeBindings.cs
- Point.cs
- ConnectionManagementSection.cs
- DbDataReader.cs
- HttpDictionary.cs
- ProxyWebPartConnectionCollection.cs
- HitTestWithGeometryDrawingContextWalker.cs
- IntMinMaxAggregationOperator.cs
- OleDbEnumerator.cs
- DbParameterCollectionHelper.cs
- HtmlImage.cs
- HttpHandlersSection.cs
- OutputCacheProfile.cs
- DbConnectionInternal.cs
- XmlCharacterData.cs
- DataViewManager.cs
- ProviderCollection.cs
- WorkflowInspectionServices.cs
- _BufferOffsetSize.cs
- XmlSecureResolver.cs
- FormatterConverter.cs
- SymmetricKey.cs
- WebPartMenu.cs
- HttpRequestCacheValidator.cs
- Simplifier.cs
- UnsafeNativeMethodsTablet.cs
- PagerStyle.cs
- LineVisual.cs
- ApplicationInfo.cs
- VisualBasicValue.cs
- OciHandle.cs
- InterleavedZipPartStream.cs
- TextServicesManager.cs
- DataGridViewRowsRemovedEventArgs.cs
- UDPClient.cs
- DiscoveryEndpointElement.cs
- LinqDataSourceDisposeEventArgs.cs
- MailWriter.cs
- MdiWindowListStrip.cs
- WebBrowserPermission.cs
- Rss20FeedFormatter.cs
- CallbackCorrelationInitializer.cs
- ComponentGuaranteesAttribute.cs
- Parallel.cs
- LinearGradientBrush.cs
- PathSegmentCollection.cs
- IteratorFilter.cs
- PopupControlService.cs
- UserControl.cs
- DigitalSignatureProvider.cs
- ipaddressinformationcollection.cs
- SqlBulkCopy.cs
- PackWebResponse.cs
- DataMisalignedException.cs
- ListViewGroupConverter.cs
- DataGridViewIntLinkedList.cs
- WindowHideOrCloseTracker.cs
- diagnosticsswitches.cs
- HierarchicalDataBoundControlAdapter.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- HtmlLink.cs
- HtmlImage.cs
- WebPartEditorApplyVerb.cs
- SignedPkcs7.cs
- ConnectionProviderAttribute.cs
- ForeignConstraint.cs
- BaseParser.cs