Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / TargetControlTypeCache.cs / 1305376 / TargetControlTypeCache.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections; // Cache TargetControlTypeAttributes to improve performance internal static class TargetControlTypeCache { // Maps Type (extender control) to Type[] (valid target control types) private static readonly Hashtable _targetControlTypeCache = Hashtable.Synchronized(new Hashtable()); public static Type[] GetTargetControlTypes(Type extenderControlType) { Type[] types = (Type[])_targetControlTypeCache[extenderControlType]; if (types == null) { types = GetTargetControlTypesInternal(extenderControlType); _targetControlTypeCache[extenderControlType] = types; } return types; } private static Type[] GetTargetControlTypesInternal(Type extenderControlType) { object[] attrs = extenderControlType.GetCustomAttributes(typeof(TargetControlTypeAttribute), true); Type[] types = new Type[attrs.Length]; for (int i = 0; i < attrs.Length; i++) { types[i] = ((TargetControlTypeAttribute)attrs[i]).TargetControlType; } 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
- MergablePropertyAttribute.cs
- UnsafeNativeMethods.cs
- CallInfo.cs
- UIntPtr.cs
- LineSegment.cs
- Rotation3DAnimationBase.cs
- TripleDES.cs
- ClientType.cs
- BaseCAMarshaler.cs
- IFlowDocumentViewer.cs
- BaseParser.cs
- SchemaDeclBase.cs
- HierarchicalDataSourceIDConverter.cs
- FacetDescriptionElement.cs
- DataSourceHelper.cs
- Ops.cs
- ExpressionBuilderContext.cs
- PerformanceCounterCategory.cs
- PropertyIDSet.cs
- BitVec.cs
- HighlightComponent.cs
- OptimisticConcurrencyException.cs
- QueryComponents.cs
- SvcMapFile.cs
- HashCodeCombiner.cs
- InputScopeManager.cs
- RadioButtonFlatAdapter.cs
- PhysicalOps.cs
- GeometryGroup.cs
- DeclaredTypeElement.cs
- SingleTagSectionHandler.cs
- SqlInternalConnectionTds.cs
- SessionIDManager.cs
- HttpStaticObjectsCollectionBase.cs
- AnnotationResourceCollection.cs
- DataGridViewTextBoxEditingControl.cs
- basenumberconverter.cs
- SupportedAddressingMode.cs
- GridItemCollection.cs
- ImageDrawing.cs
- XmlDataProvider.cs
- HeaderedItemsControl.cs
- ReaderWriterLock.cs
- DictionaryEntry.cs
- PolyQuadraticBezierSegment.cs
- ExceptionTranslationTable.cs
- SrgsOneOf.cs
- ArrangedElement.cs
- CodeArrayCreateExpression.cs
- SecurityDocument.cs
- IgnoreFlushAndCloseStream.cs
- EventSinkActivity.cs
- StringArrayConverter.cs
- PointF.cs
- CodeSnippetCompileUnit.cs
- WindowsGraphicsWrapper.cs
- PropertyGrid.cs
- DebugView.cs
- documentsequencetextview.cs
- WorkflowItemsPresenter.cs
- ItemList.cs
- FigureParagraph.cs
- XmlCDATASection.cs
- DataDocumentXPathNavigator.cs
- ClientData.cs
- RelatedView.cs
- CodeSubDirectory.cs
- TextPatternIdentifiers.cs
- BufferedReadStream.cs
- ArithmeticException.cs
- PackageRelationship.cs
- CultureTableRecord.cs
- SystemTcpStatistics.cs
- X509Chain.cs
- ConnectionManagementSection.cs
- LongAverageAggregationOperator.cs
- GroupByExpressionRewriter.cs
- ConfigXmlSignificantWhitespace.cs
- AssemblyResolver.cs
- DataGridSortCommandEventArgs.cs
- ReferencedType.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- ConfigXmlWhitespace.cs
- MetadataItemCollectionFactory.cs
- EventLog.cs
- printdlgexmarshaler.cs
- WindowProviderWrapper.cs
- SqlUDTStorage.cs
- SafeSecurityHelper.cs
- Brush.cs
- ProviderSettings.cs
- DataControlFieldHeaderCell.cs
- ConsumerConnectionPoint.cs
- x509utils.cs
- CompiledAction.cs
- XmlRawWriter.cs
- BaseCodePageEncoding.cs
- WindowsStatic.cs
- StreamUpdate.cs
- CodeLinePragma.cs