Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Compilation / DesignTimeResourceProviderFactoryAttribute.cs / 1 / DesignTimeResourceProviderFactoryAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Compilation { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class DesignTimeResourceProviderFactoryAttribute : Attribute { private string _factoryTypeName; public DesignTimeResourceProviderFactoryAttribute(Type factoryType) { _factoryTypeName = factoryType.AssemblyQualifiedName; } public DesignTimeResourceProviderFactoryAttribute(string factoryTypeName) { _factoryTypeName = factoryTypeName; } public string FactoryTypeName { get { return _factoryTypeName; } } public override bool IsDefaultAttribute() { return (_factoryTypeName == null); } } }Allows a ResourceProviderFactory to specify the type of the associated /// DesignTimeResourceProviderFactory. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlCacheDependency.cs
- HostedHttpRequestAsyncResult.cs
- Expression.cs
- Message.cs
- WindowsBrush.cs
- StretchValidation.cs
- CallbackHandler.cs
- ExpandSegmentCollection.cs
- PropertyBuilder.cs
- WindowsGraphics.cs
- IRCollection.cs
- TemplateBaseAction.cs
- DelegatingTypeDescriptionProvider.cs
- TextBoxBase.cs
- DecoderFallbackWithFailureFlag.cs
- MobileErrorInfo.cs
- InputGestureCollection.cs
- MemoryMappedViewStream.cs
- CatalogPart.cs
- Rectangle.cs
- WindowsListViewGroupHelper.cs
- TreeNodeCollection.cs
- OrderedDictionary.cs
- rsa.cs
- LinearKeyFrames.cs
- QueryResponse.cs
- BeginEvent.cs
- EditorBrowsableAttribute.cs
- XmlSerializableWriter.cs
- PeerInputChannelListener.cs
- QilValidationVisitor.cs
- BasicKeyConstraint.cs
- XmlAttributeOverrides.cs
- FixedSOMGroup.cs
- WebBrowserUriTypeConverter.cs
- ConstantSlot.cs
- MasterPageParser.cs
- HitTestParameters3D.cs
- TypeDependencyAttribute.cs
- PageAction.cs
- UnionCodeGroup.cs
- ImageIndexConverter.cs
- StylusSystemGestureEventArgs.cs
- _AutoWebProxyScriptEngine.cs
- FlowPosition.cs
- SimpleType.cs
- CodeComment.cs
- HMACMD5.cs
- TypeReference.cs
- TextEditorTyping.cs
- SpeechEvent.cs
- FontFamilyConverter.cs
- MethodBuilderInstantiation.cs
- ObjectStorage.cs
- StandardBindingElementCollection.cs
- grammarelement.cs
- CompositeFontInfo.cs
- ErrorHandler.cs
- RegistryConfigurationProvider.cs
- StyleBamlRecordReader.cs
- ClrPerspective.cs
- DataObject.cs
- PreProcessInputEventArgs.cs
- RoleManagerEventArgs.cs
- SvcMapFileLoader.cs
- TransactionTraceIdentifier.cs
- UserCancellationException.cs
- serverconfig.cs
- Lease.cs
- RemotingServices.cs
- Matrix3D.cs
- AutomationElementCollection.cs
- UpdateProgress.cs
- UnsafeNativeMethods.cs
- mediaclock.cs
- FactoryRecord.cs
- ServiceControllerDesigner.cs
- Invariant.cs
- WebPartCollection.cs
- WaitForChangedResult.cs
- SQLDoubleStorage.cs
- ResourcePool.cs
- StrongNameIdentityPermission.cs
- FrameworkPropertyMetadata.cs
- MemoryMappedViewAccessor.cs
- ExpressionContext.cs
- XmlNodeList.cs
- EditingMode.cs
- SingleAnimationUsingKeyFrames.cs
- EventBuilder.cs
- QilFactory.cs
- ApplicationFileCodeDomTreeGenerator.cs
- KnownTypesHelper.cs
- SetMemberBinder.cs
- KeyedQueue.cs
- PageSettings.cs
- D3DImage.cs
- ImageAttributes.cs
- ResourceDescriptionAttribute.cs
- DetailsViewDeletedEventArgs.cs