Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartTransformerAttribute.cs / 1305376 / WebPartTransformerAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; [AttributeUsage(AttributeTargets.Class)] public sealed class WebPartTransformerAttribute : Attribute { // Cache provider and consumer types for each WebPartTransformer type. We store an array of // 2 Types (consumer, provider) indexed by transformer type. private static readonly Hashtable transformerCache = Hashtable.Synchronized(new Hashtable()); private Type _consumerType; private Type _providerType; public WebPartTransformerAttribute(Type consumerType, Type providerType) { if (consumerType == null) { throw new ArgumentNullException("consumerType"); } if (providerType == null) { throw new ArgumentNullException("providerType"); } _consumerType = consumerType; _providerType = providerType; } public Type ConsumerType { get { return _consumerType; } } public Type ProviderType { get { return _providerType; } } public static Type GetConsumerType(Type transformerType) { return GetTransformerTypes(transformerType)[0]; } public static Type GetProviderType(Type transformerType) { return GetTransformerTypes(transformerType)[1]; } ////// Returns the types a transformer can accept on its "connection points" /// private static Type[] GetTransformerTypes(Type transformerType) { if (transformerType == null) { throw new ArgumentNullException("transformerType"); } if (!transformerType.IsSubclassOf(typeof(WebPartTransformer))) { throw new InvalidOperationException( SR.GetString(SR.WebPartTransformerAttribute_NotTransformer, transformerType.FullName)); } Type[] types = (Type[])transformerCache[transformerType]; if (types == null) { types = GetTransformerTypesFromAttribute(transformerType); transformerCache[transformerType] = types; } return types; } private static Type[] GetTransformerTypesFromAttribute(Type transformerType) { Type[] types = new Type[2]; object[] attributes = transformerType.GetCustomAttributes(typeof(WebPartTransformerAttribute), true); // WebPartTransformerAttribute.AllowMultiple is false Debug.Assert(attributes.Length == 0 || attributes.Length == 1); if (attributes.Length == 1) { WebPartTransformerAttribute attribute = (WebPartTransformerAttribute)attributes[0]; if (attribute.ConsumerType == attribute.ProviderType) { throw new InvalidOperationException(SR.GetString(SR.WebPartTransformerAttribute_SameTypes)); } types[0] = attribute.ConsumerType; types[1] = attribute.ProviderType; } else { throw new InvalidOperationException( SR.GetString(SR.WebPartTransformerAttribute_Missing, transformerType.FullName)); } return types; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; [AttributeUsage(AttributeTargets.Class)] public sealed class WebPartTransformerAttribute : Attribute { // Cache provider and consumer types for each WebPartTransformer type. We store an array of // 2 Types (consumer, provider) indexed by transformer type. private static readonly Hashtable transformerCache = Hashtable.Synchronized(new Hashtable()); private Type _consumerType; private Type _providerType; public WebPartTransformerAttribute(Type consumerType, Type providerType) { if (consumerType == null) { throw new ArgumentNullException("consumerType"); } if (providerType == null) { throw new ArgumentNullException("providerType"); } _consumerType = consumerType; _providerType = providerType; } public Type ConsumerType { get { return _consumerType; } } public Type ProviderType { get { return _providerType; } } public static Type GetConsumerType(Type transformerType) { return GetTransformerTypes(transformerType)[0]; } public static Type GetProviderType(Type transformerType) { return GetTransformerTypes(transformerType)[1]; } ////// Returns the types a transformer can accept on its "connection points" /// private static Type[] GetTransformerTypes(Type transformerType) { if (transformerType == null) { throw new ArgumentNullException("transformerType"); } if (!transformerType.IsSubclassOf(typeof(WebPartTransformer))) { throw new InvalidOperationException( SR.GetString(SR.WebPartTransformerAttribute_NotTransformer, transformerType.FullName)); } Type[] types = (Type[])transformerCache[transformerType]; if (types == null) { types = GetTransformerTypesFromAttribute(transformerType); transformerCache[transformerType] = types; } return types; } private static Type[] GetTransformerTypesFromAttribute(Type transformerType) { Type[] types = new Type[2]; object[] attributes = transformerType.GetCustomAttributes(typeof(WebPartTransformerAttribute), true); // WebPartTransformerAttribute.AllowMultiple is false Debug.Assert(attributes.Length == 0 || attributes.Length == 1); if (attributes.Length == 1) { WebPartTransformerAttribute attribute = (WebPartTransformerAttribute)attributes[0]; if (attribute.ConsumerType == attribute.ProviderType) { throw new InvalidOperationException(SR.GetString(SR.WebPartTransformerAttribute_SameTypes)); } types[0] = attribute.ConsumerType; types[1] = attribute.ProviderType; } else { throw new InvalidOperationException( SR.GetString(SR.WebPartTransformerAttribute_Missing, transformerType.FullName)); } return types; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SymbolType.cs
- KeyValueConfigurationElement.cs
- KeyBinding.cs
- SingleObjectCollection.cs
- MenuItemBinding.cs
- RadioButtonStandardAdapter.cs
- Menu.cs
- InitializerFacet.cs
- BaseComponentEditor.cs
- ExceptionTranslationTable.cs
- SystemIPv6InterfaceProperties.cs
- Repeater.cs
- MetadataException.cs
- DayRenderEvent.cs
- SerializationFieldInfo.cs
- StringTraceRecord.cs
- IndependentAnimationStorage.cs
- XPathNodeList.cs
- TimerElapsedEvenArgs.cs
- ParameterReplacerVisitor.cs
- SchemaMapping.cs
- ByteAnimation.cs
- WebPartTransformerCollection.cs
- SqlMethodCallConverter.cs
- cookiecollection.cs
- CustomWebEventKey.cs
- RectangleConverter.cs
- ConnectionStringsExpressionBuilder.cs
- TagMapInfo.cs
- TemplatedMailWebEventProvider.cs
- StrokeNodeOperations2.cs
- XmlCustomFormatter.cs
- ImageButton.cs
- WmlPanelAdapter.cs
- RSAPKCS1SignatureFormatter.cs
- TraceSection.cs
- ObjectStateEntry.cs
- RenderTargetBitmap.cs
- PersonalizableTypeEntry.cs
- ListDictionary.cs
- RepeatButton.cs
- XmlSchemaAttributeGroupRef.cs
- ChannelPool.cs
- SafeThreadHandle.cs
- RequestDescription.cs
- ClientUtils.cs
- TraceRecord.cs
- FunctionNode.cs
- MediaContextNotificationWindow.cs
- KeyGesture.cs
- UnknownBitmapEncoder.cs
- Rect3D.cs
- DesignerTransactionCloseEvent.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- Confirm.cs
- SupportingTokenSecurityTokenResolver.cs
- BoundPropertyEntry.cs
- ProtectedConfigurationSection.cs
- SqlDataRecord.cs
- _StreamFramer.cs
- SqlDataSourceCommandEventArgs.cs
- HttpDebugHandler.cs
- PresentationSource.cs
- PageContent.cs
- VectorKeyFrameCollection.cs
- ListDataBindEventArgs.cs
- RelatedPropertyManager.cs
- X509SecurityTokenAuthenticator.cs
- WindowsEditBoxRange.cs
- Maps.cs
- CommandManager.cs
- ParameterCollection.cs
- ColorPalette.cs
- ToolStripGrip.cs
- UriParserTemplates.cs
- Group.cs
- ScriptComponentDescriptor.cs
- ReadOnlyDataSourceView.cs
- TreePrinter.cs
- ArrayTypeMismatchException.cs
- ProtocolsConfiguration.cs
- FlowDocumentFormatter.cs
- RegisteredHiddenField.cs
- HelpInfo.cs
- GridViewColumnCollection.cs
- ListDataBindEventArgs.cs
- LineBreakRecord.cs
- AlternateView.cs
- CoTaskMemUnicodeSafeHandle.cs
- SecurityContextSecurityTokenResolver.cs
- GeometryHitTestParameters.cs
- CalloutQueueItem.cs
- GridViewUpdatedEventArgs.cs
- IIS7UserPrincipal.cs
- LineServicesRun.cs
- SystemNetworkInterface.cs
- ClosableStream.cs
- DbLambda.cs
- CachedCompositeFamily.cs
- TextDecorationCollection.cs