Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Design / Serialization / RootDesignerSerializerAttribute.cs / 1 / RootDesignerSerializerAttribute.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 if it is /// being used as a root object. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = true, Inherited = true)] [Obsolete("This attribute has been deprecated. Use DesignerSerializerAttribute instead. For example, to specify a root designer for CodeDom, use DesignerSerializerAttribute(...,typeof(TypeCodeDomSerializer)). http://go.microsoft.com/fwlink/?linkid=14202")] public sealed class RootDesignerSerializerAttribute : Attribute { private bool reloadable; private string serializerTypeName; private string serializerBaseTypeName; private string typeId; ////// Creates a new designer serialization attribute. /// public RootDesignerSerializerAttribute(Type serializerType, Type baseSerializerType, bool reloadable) { this.serializerTypeName = serializerType.AssemblyQualifiedName; this.serializerBaseTypeName = baseSerializerType.AssemblyQualifiedName; this.reloadable = reloadable; } ////// Creates a new designer serialization attribute. /// public RootDesignerSerializerAttribute(string serializerTypeName, Type baseSerializerType, bool reloadable) { this.serializerTypeName = serializerTypeName; this.serializerBaseTypeName = baseSerializerType.AssemblyQualifiedName; this.reloadable = reloadable; } ////// Creates a new designer serialization attribute. /// public RootDesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName, bool reloadable) { this.serializerTypeName = serializerTypeName; this.serializerBaseTypeName = baseSerializerTypeName; this.reloadable = reloadable; } ////// Indicates that this root serializer supports reloading. If false, the design document /// will not automatically perform a reload on behalf of the user. It will be the user's /// responsibility to reload the document themselves. /// public bool Reloadable { get { return reloadable; } } ////// 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
- FileDialogCustomPlaces.cs
- MemberDescriptor.cs
- SID.cs
- StackBuilderSink.cs
- PersianCalendar.cs
- SqlDataSourceCache.cs
- PageRanges.cs
- _SingleItemRequestCache.cs
- ConstructorExpr.cs
- ZoneButton.cs
- log.cs
- SmtpFailedRecipientException.cs
- FixedTextView.cs
- IBuiltInEvidence.cs
- WebProxyScriptElement.cs
- SequenceDesigner.cs
- DataTemplateSelector.cs
- PerformanceCounterScope.cs
- XmlDataSourceView.cs
- NavigationExpr.cs
- SBCSCodePageEncoding.cs
- CasesDictionary.cs
- OLEDB_Enum.cs
- DomainUpDown.cs
- StoryFragments.cs
- ParameterReplacerVisitor.cs
- SafeProcessHandle.cs
- MetaTableHelper.cs
- AttributeCollection.cs
- DataGridViewAdvancedBorderStyle.cs
- Tuple.cs
- EventLogPermissionAttribute.cs
- SurrogateEncoder.cs
- WebPartsPersonalizationAuthorization.cs
- TypeLoadException.cs
- OleAutBinder.cs
- RealProxy.cs
- HttpProfileGroupBase.cs
- PerformanceCounterNameAttribute.cs
- BamlTreeMap.cs
- EmptyEnumerator.cs
- UrlParameterWriter.cs
- BuildProviderAppliesToAttribute.cs
- ClientTargetSection.cs
- SessionSwitchEventArgs.cs
- SchemaTableOptionalColumn.cs
- InputLanguageEventArgs.cs
- ExceptionNotification.cs
- TypeExtensionConverter.cs
- DragDrop.cs
- UnsafeNativeMethodsTablet.cs
- ProjectionCamera.cs
- AppModelKnownContentFactory.cs
- DecimalAnimationBase.cs
- NullableDecimalMinMaxAggregationOperator.cs
- PictureBox.cs
- HyperlinkAutomationPeer.cs
- SizeValueSerializer.cs
- MonikerProxyAttribute.cs
- PathGeometry.cs
- EventLogPermissionHolder.cs
- DataControlImageButton.cs
- WriteStateInfoBase.cs
- ConfigurationValues.cs
- IteratorDescriptor.cs
- ProcessHostMapPath.cs
- ServiceSecurityAuditElement.cs
- SignatureResourceHelper.cs
- TransformerConfigurationWizardBase.cs
- XmlDeclaration.cs
- DocumentPaginator.cs
- Token.cs
- SelectionRangeConverter.cs
- InlinedAggregationOperatorEnumerator.cs
- UniqueEventHelper.cs
- RowToParametersTransformer.cs
- NativeMethods.cs
- SymbolTable.cs
- MatchingStyle.cs
- SerialPort.cs
- PriorityChain.cs
- EntityDataSourceUtil.cs
- PeerContact.cs
- UnsafeNativeMethodsTablet.cs
- shaper.cs
- XMLDiffLoader.cs
- EdmEntityTypeAttribute.cs
- EnvelopedSignatureTransform.cs
- Pen.cs
- Form.cs
- FileResponseElement.cs
- CodeDomComponentSerializationService.cs
- Attributes.cs
- EncodingStreamWrapper.cs
- EntityCollectionChangedParams.cs
- ProcessHostServerConfig.cs
- ExceptionUtil.cs
- BindingMemberInfo.cs
- EntityKey.cs
- DoWorkEventArgs.cs