Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Serialization / CodeDomSerializationProvider.cs / 1 / CodeDomSerializationProvider.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel.Design.Serialization { using System.Design; using System; using System.CodeDom; using System.CodeDom.Compiler; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Resources; using System.Runtime.Serialization; using System.Globalization; ////// /// This is the serialization provider for all code dom serializers. /// internal sealed class CodeDomSerializationProvider : IDesignerSerializationProvider { ////// Returns a code dom serializer /// private object GetCodeDomSerializer(IDesignerSerializationManager manager, object currentSerializer, Type objectType, Type serializerType) { // If this isn't a serializer type we recognize, do nothing. Also, if metadata specified // a custom serializer, then use it. if (currentSerializer != null) { return null; } // Null is a valid value that can be passed into GetSerializer. It indicates // that the value we need to serialize is null, in which case we handle it // through the PrimitiveCodeDomSerializer. // if (objectType == null) { return PrimitiveCodeDomSerializer.Default; } // Support for components. // if (typeof(IComponent).IsAssignableFrom(objectType)) { return ComponentCodeDomSerializer.Default; } // We special case enums. They do have instance descriptors, but we want // better looking code than the instance descriptor can provide for flags, // so we do it ourselves. // if (typeof(Enum).IsAssignableFrom(objectType)) { return EnumCodeDomSerializer.Default; } // We will provide a serializer for any intrinsic types. // if (objectType.IsPrimitive || objectType.IsEnum || objectType == typeof(string)) { return PrimitiveCodeDomSerializer.Default; } // And one for collections. // if (typeof(ICollection).IsAssignableFrom(objectType)) { return CollectionCodeDomSerializer.Default; } // And one for IContainer if (typeof(IContainer).IsAssignableFrom(objectType)) { return ContainerCodeDomSerializer.Default; } // And one for resources // if (typeof(ResourceManager).IsAssignableFrom(objectType)) { return ResourceCodeDomSerializer.Default; } // The default serializer can do any object including those with instance descriptors. return CodeDomSerializer.Default; } ////// Returns a code dom serializer for members /// private object GetMemberCodeDomSerializer(IDesignerSerializationManager manager, object currentSerializer, Type objectType, Type serializerType) { // Don't provide our serializer if someone else already had one if (currentSerializer != null) { return null; } if (typeof(PropertyDescriptor).IsAssignableFrom(objectType)) { return PropertyMemberCodeDomSerializer.Default; } if (typeof(EventDescriptor).IsAssignableFrom(objectType)) { return EventMemberCodeDomSerializer.Default; } return null; } ////// Returns a code dom serializer for types /// private object GetTypeCodeDomSerializer(IDesignerSerializationManager manager, object currentSerializer, Type objectType, Type serializerType) { // Don't provide our serializer if someone else already had one if (currentSerializer != null) { return null; } if (typeof(IComponent).IsAssignableFrom(objectType)) { return ComponentTypeCodeDomSerializer.Default; } return TypeCodeDomSerializer.Default; } ////// /// This will be called by the serialization manager when it /// is trying to locate a serialzer for an object type. /// If this serialization provider can provide a serializer /// that is of the correct type, it should return it. /// Otherwise, it should return null. /// object IDesignerSerializationProvider.GetSerializer(IDesignerSerializationManager manager, object currentSerializer, Type objectType, Type serializerType) { if (serializerType == typeof(CodeDomSerializer)) { return GetCodeDomSerializer(manager, currentSerializer, objectType, serializerType); } else if (serializerType == typeof(MemberCodeDomSerializer)) { return GetMemberCodeDomSerializer(manager, currentSerializer, objectType, serializerType); } else if (serializerType == typeof(TypeCodeDomSerializer)) { return GetTypeCodeDomSerializer(manager, currentSerializer, objectType, serializerType); } return null; // don't understand this type of serializer. } } } // 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
- WorkerRequest.cs
- ColorContextHelper.cs
- ColorConvertedBitmapExtension.cs
- _DisconnectOverlappedAsyncResult.cs
- EpmContentDeSerializerBase.cs
- ThreadStaticAttribute.cs
- __FastResourceComparer.cs
- WindowCollection.cs
- QueryResultOp.cs
- ConfigurationManagerInternal.cs
- TextPattern.cs
- HttpPostedFile.cs
- ConfigurationPropertyAttribute.cs
- MessageHeaderDescriptionCollection.cs
- HttpFileCollectionBase.cs
- SatelliteContractVersionAttribute.cs
- CounterCreationDataConverter.cs
- ConnectionProviderAttribute.cs
- SmtpFailedRecipientException.cs
- _RequestCacheProtocol.cs
- ZipArchive.cs
- HttpWebResponse.cs
- HotSpot.cs
- SafeTimerHandle.cs
- TypefaceCollection.cs
- RegisteredDisposeScript.cs
- OciEnlistContext.cs
- Validator.cs
- JournalEntryListConverter.cs
- SystemIPAddressInformation.cs
- Site.cs
- DelegateCompletionCallbackWrapper.cs
- XmlSchemaSubstitutionGroup.cs
- DataServiceRequestArgs.cs
- PerformanceCounterLib.cs
- CollectionViewProxy.cs
- MaterialGroup.cs
- XamlBrushSerializer.cs
- ScaleTransform3D.cs
- KnownBoxes.cs
- WindowHideOrCloseTracker.cs
- TPLETWProvider.cs
- DataGridViewTextBoxEditingControl.cs
- _KerberosClient.cs
- Confirm.cs
- ColumnWidthChangedEvent.cs
- XmlQueryType.cs
- ParameterCollection.cs
- StorageFunctionMapping.cs
- ProcessManager.cs
- DataKey.cs
- FormsAuthenticationTicket.cs
- MobileListItemCollection.cs
- DispatcherSynchronizationContext.cs
- ListViewDeleteEventArgs.cs
- DecimalStorage.cs
- TextModifier.cs
- SoapExtensionImporter.cs
- TypeInitializationException.cs
- SocketPermission.cs
- LinearGradientBrush.cs
- GC.cs
- FixedSOMPageConstructor.cs
- SchemaElementDecl.cs
- ToolStripItemClickedEventArgs.cs
- BlurBitmapEffect.cs
- XmlSchemaNotation.cs
- XmlSchemaSequence.cs
- FlowLayoutSettings.cs
- HtmlUtf8RawTextWriter.cs
- CellTreeNode.cs
- ActivityDesigner.cs
- WebPartTracker.cs
- ToolboxComponentsCreatingEventArgs.cs
- CalendarDataBindingHandler.cs
- CodeSubDirectoriesCollection.cs
- ReferencedType.cs
- EntityProxyFactory.cs
- ProtocolsConfigurationHandler.cs
- Perspective.cs
- MultipleViewProviderWrapper.cs
- ItemsControl.cs
- OrderedDictionaryStateHelper.cs
- AssociativeAggregationOperator.cs
- Sequence.cs
- ParameterModifier.cs
- EntityViewGenerator.cs
- CreateParams.cs
- PrimaryKeyTypeConverter.cs
- PingReply.cs
- Serializer.cs
- ZoneIdentityPermission.cs
- XPathDocumentIterator.cs
- Point.cs
- RoleBoolean.cs
- CatalogPartCollection.cs
- SqlExpander.cs
- CorruptingExceptionCommon.cs
- MergeFailedEvent.cs
- State.cs