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
- MailWriter.cs
- Int16AnimationBase.cs
- XmlQueryTypeFactory.cs
- VisualBrush.cs
- SafeTokenHandle.cs
- X509PeerCertificateElement.cs
- GlyphRun.cs
- XmlIlTypeHelper.cs
- RotationValidation.cs
- nulltextnavigator.cs
- GenericRootAutomationPeer.cs
- _IPv4Address.cs
- SpecialNameAttribute.cs
- Schedule.cs
- TextProviderWrapper.cs
- ButtonFlatAdapter.cs
- mediapermission.cs
- CipherData.cs
- FormViewUpdateEventArgs.cs
- DataKeyArray.cs
- AuthenticationServiceManager.cs
- ToolStripLocationCancelEventArgs.cs
- WebHttpSecurityElement.cs
- ToolStripDropDownButton.cs
- CustomPopupPlacement.cs
- Resources.Designer.cs
- ScrollPattern.cs
- Guid.cs
- ContextItemManager.cs
- FontDifferentiator.cs
- FontStretches.cs
- DataBinder.cs
- ValueConversionAttribute.cs
- JournalEntryStack.cs
- Mutex.cs
- DoubleLinkList.cs
- RtType.cs
- Cloud.cs
- SrgsElementList.cs
- Models.cs
- TemplateAction.cs
- WebConfigurationHost.cs
- InternalPolicyElement.cs
- HWStack.cs
- PropertyAccessVisitor.cs
- StorageRoot.cs
- XmlSchemas.cs
- Attributes.cs
- DoubleLink.cs
- BitmapMetadataBlob.cs
- ComboBox.cs
- DesignerTextBoxAdapter.cs
- SafeViewOfFileHandle.cs
- IdentityReference.cs
- ValidationManager.cs
- DodSequenceMerge.cs
- DataGridTable.cs
- RadioButton.cs
- ModuleConfigurationInfo.cs
- PolicyValidator.cs
- PointValueSerializer.cs
- SingleSelectRootGridEntry.cs
- HasCopySemanticsAttribute.cs
- ReadOnlyDataSource.cs
- PanelStyle.cs
- WindowsStreamSecurityBindingElement.cs
- SkewTransform.cs
- Rijndael.cs
- EmbossBitmapEffect.cs
- FixedSOMSemanticBox.cs
- X509CertificateEndpointIdentity.cs
- EnumMemberAttribute.cs
- XmlSchemaParticle.cs
- OutputCacheProfile.cs
- CollectionContainer.cs
- DrawingBrush.cs
- WebPageTraceListener.cs
- CodeMemberMethod.cs
- BinaryNegotiation.cs
- ToolStripContentPanel.cs
- Operators.cs
- TagPrefixAttribute.cs
- DataViewListener.cs
- NumericUpDownAcceleration.cs
- ToolStripItemClickedEventArgs.cs
- UIElementIsland.cs
- FixedSOMPageElement.cs
- TabItem.cs
- Function.cs
- CodeObjectCreateExpression.cs
- ToolBarTray.cs
- CfgArc.cs
- XmlAutoDetectWriter.cs
- Image.cs
- Application.cs
- DefaultParameterValueAttribute.cs
- ConditionalAttribute.cs
- IpcClientManager.cs
- SocketException.cs
- OdbcTransaction.cs