Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Design / Serialization / DesignerSerializerAttribute.cs / 1 / DesignerSerializerAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Serialization { using System.Security.Permissions; ////// This attribute can be placed on a class to indicate what serialization /// object should be used to serialize the class at design time. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = true, Inherited = true)] public sealed class DesignerSerializerAttribute : Attribute { private string serializerTypeName; private string serializerBaseTypeName; private string typeId; ////// Creates a new designer serialization attribute. /// public DesignerSerializerAttribute(Type serializerType, Type baseSerializerType) { this.serializerTypeName = serializerType.AssemblyQualifiedName; this.serializerBaseTypeName = baseSerializerType.AssemblyQualifiedName; } ////// Creates a new designer serialization attribute. /// public DesignerSerializerAttribute(string serializerTypeName, Type baseSerializerType) { this.serializerTypeName = serializerTypeName; this.serializerBaseTypeName = baseSerializerType.AssemblyQualifiedName; } ////// Creates a new designer serialization attribute. /// public DesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName) { this.serializerTypeName = serializerTypeName; this.serializerBaseTypeName = baseSerializerTypeName; } ////// Retrieves the fully qualified type name of the serializer. /// public string SerializerTypeName { get { return serializerTypeName; } } ////// Retrieves the fully qualified type name of the serializer base type. /// public string SerializerBaseTypeName { get { return serializerBaseTypeName; } } ////// /// public override object TypeId { get { if (typeId == null) { string baseType = serializerBaseTypeName; int comma = baseType.IndexOf(','); if (comma != -1) { baseType = baseType.Substring(0, comma); } typeId = GetType().FullName + baseType; } return typeId; } } } }/// This defines a unique ID for this attribute type. It is used /// by filtering algorithms to identify two attributes that are /// the same type. For most attributes, this just returns the /// Type instance for the attribute. EditorAttribute overrides /// this to include the type of the editor base type. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BamlLocalizer.cs
- GeneralTransform.cs
- BaseServiceProvider.cs
- HostedAspNetEnvironment.cs
- MetaModel.cs
- CookieProtection.cs
- listitem.cs
- CellConstant.cs
- CompositeCollection.cs
- ServiceHttpModule.cs
- TextElementEditingBehaviorAttribute.cs
- ApplicationInfo.cs
- ErrorRuntimeConfig.cs
- ColumnCollection.cs
- SqlConnectionManager.cs
- ImportException.cs
- RectAnimation.cs
- QueryOutputWriter.cs
- TraceListeners.cs
- PackageRelationshipSelector.cs
- ExceptionUtil.cs
- AdRotatorDesigner.cs
- Certificate.cs
- TreeBuilderXamlTranslator.cs
- AssemblyAttributes.cs
- ContentOperations.cs
- CodePageEncoding.cs
- SafeRightsManagementQueryHandle.cs
- SqlSelectStatement.cs
- PeerNameRecordCollection.cs
- PointIndependentAnimationStorage.cs
- RegexGroupCollection.cs
- AuthenticationSection.cs
- LinearQuaternionKeyFrame.cs
- DataSourceXmlTextReader.cs
- TextLine.cs
- DebugInfoGenerator.cs
- HtmlInputRadioButton.cs
- NameTable.cs
- LoginDesigner.cs
- StdValidatorsAndConverters.cs
- ExitEventArgs.cs
- TextRunCache.cs
- GridViewRowEventArgs.cs
- OwnerDrawPropertyBag.cs
- ExtentCqlBlock.cs
- XmlUtilWriter.cs
- DbConnectionClosed.cs
- CodeExporter.cs
- MetadataSource.cs
- Symbol.cs
- DbConnectionPoolGroup.cs
- Drawing.cs
- ConsoleCancelEventArgs.cs
- AssociationSetMetadata.cs
- Focus.cs
- DetailsViewUpdatedEventArgs.cs
- XmlSchemaSimpleContentRestriction.cs
- SqlParameterizer.cs
- ITreeGenerator.cs
- AudioFormatConverter.cs
- XsdCachingReader.cs
- PageCatalogPart.cs
- ConstraintManager.cs
- WebPartConnectionsDisconnectVerb.cs
- PrintEvent.cs
- StructuredType.cs
- RawStylusSystemGestureInputReport.cs
- SmiMetaData.cs
- ModifierKeysConverter.cs
- StaticResourceExtension.cs
- WindowCollection.cs
- TitleStyle.cs
- MatrixAnimationBase.cs
- HTTP_SERVICE_CONFIG_URLACL_PARAM.cs
- PropertyChangedEventArgs.cs
- ReferenceSchema.cs
- UnsafeNativeMethodsTablet.cs
- ScalarType.cs
- OptimalBreakSession.cs
- JsonReader.cs
- WebPartsPersonalization.cs
- OdbcTransaction.cs
- XmlHelper.cs
- RowVisual.cs
- Vector3DAnimationBase.cs
- NativeMethods.cs
- ConnectionInterfaceCollection.cs
- XmlDataCollection.cs
- StorageComplexPropertyMapping.cs
- CloudCollection.cs
- BitmapEffectState.cs
- CorrelationTokenTypeConvertor.cs
- KeyConstraint.cs
- ListenerPerfCounters.cs
- WSIdentityFaultException.cs
- IList.cs
- StructuredType.cs
- MenuItemStyleCollection.cs
- MsmqProcessProtocolHandler.cs