Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / FileLevelControlBuilderAttribute.cs / 1 / FileLevelControlBuilderAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class FileLevelControlBuilderAttribute : Attribute { ///Allows a TemplateControl (e.g. Page or UserControl) derived class to specify // the control builder used at the top level ofthe builder tree when parsing the file. /// for building that control within the ASP.NET parser. ////// /// public static readonly FileLevelControlBuilderAttribute Default = new FileLevelControlBuilderAttribute(null); private Type builderType = null; ///The default ///object is a /// builder. This field is read-only. /// public FileLevelControlBuilderAttribute(Type builderType) { this.builderType = builderType; } ////// public Type BuilderType { get { return builderType; } } ///Indicates XXX. This property is read-only. ////// /// public override int GetHashCode() { return builderType.GetHashCode(); } ///[To be supplied.] ////// /// public override bool Equals(object obj) { if (obj == this) { return true; } if ((obj != null) && (obj is FileLevelControlBuilderAttribute)) { return((FileLevelControlBuilderAttribute)obj).BuilderType == builderType; } return false; } ////// ///public override bool IsDefaultAttribute() { return this.Equals(Default); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class FileLevelControlBuilderAttribute : Attribute { ///Allows a TemplateControl (e.g. Page or UserControl) derived class to specify // the control builder used at the top level ofthe builder tree when parsing the file. /// for building that control within the ASP.NET parser. ////// /// public static readonly FileLevelControlBuilderAttribute Default = new FileLevelControlBuilderAttribute(null); private Type builderType = null; ///The default ///object is a /// builder. This field is read-only. /// public FileLevelControlBuilderAttribute(Type builderType) { this.builderType = builderType; } ////// public Type BuilderType { get { return builderType; } } ///Indicates XXX. This property is read-only. ////// /// public override int GetHashCode() { return builderType.GetHashCode(); } ///[To be supplied.] ////// /// public override bool Equals(object obj) { if (obj == this) { return true; } if ((obj != null) && (obj is FileLevelControlBuilderAttribute)) { return((FileLevelControlBuilderAttribute)obj).BuilderType == builderType; } return false; } ////// ///public override bool IsDefaultAttribute() { return this.Equals(Default); } } } // 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
- Label.cs
- ToolStripItem.cs
- ResourcesBuildProvider.cs
- LocalBuilder.cs
- RoutedPropertyChangedEventArgs.cs
- ConnectionStringsExpressionBuilder.cs
- PEFileEvidenceFactory.cs
- EntityDataSourceContextCreatingEventArgs.cs
- DetailsViewRow.cs
- ExecutedRoutedEventArgs.cs
- RepeatBehaviorConverter.cs
- EmbeddedObject.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- CacheEntry.cs
- CookieProtection.cs
- SendMessageRecord.cs
- ArrayElementGridEntry.cs
- Clock.cs
- ComponentEvent.cs
- CodeGenHelper.cs
- TrimSurroundingWhitespaceAttribute.cs
- BaseParagraph.cs
- FirewallWrapper.cs
- TypeDependencyAttribute.cs
- TraceRecord.cs
- EdmConstants.cs
- Descriptor.cs
- Int16Converter.cs
- Random.cs
- MostlySingletonList.cs
- DataGridViewCell.cs
- PositiveTimeSpanValidatorAttribute.cs
- IChannel.cs
- AudioSignalProblemOccurredEventArgs.cs
- ControlPropertyNameConverter.cs
- PrintingPermission.cs
- DefaultPropertyAttribute.cs
- NativeWrapper.cs
- DataGridViewRowEventArgs.cs
- TerminatingOperationBehavior.cs
- ICspAsymmetricAlgorithm.cs
- Animatable.cs
- XPathScanner.cs
- CfgSemanticTag.cs
- OleDbFactory.cs
- DesignTimeTemplateParser.cs
- FrameworkContentElementAutomationPeer.cs
- PageStatePersister.cs
- InstanceData.cs
- InvalidPropValue.cs
- ConfigXmlCDataSection.cs
- ManagedWndProcTracker.cs
- ChangeBlockUndoRecord.cs
- CodeStatementCollection.cs
- FilteredDataSetHelper.cs
- mediaclock.cs
- OperatingSystem.cs
- AssemblyCache.cs
- RightsManagementInformation.cs
- JsonServiceDocumentSerializer.cs
- SynchronizationContext.cs
- ProfileInfo.cs
- MsmqIntegrationProcessProtocolHandler.cs
- arabicshape.cs
- StylusLogic.cs
- DrawingAttributesDefaultValueFactory.cs
- XmlWrappingReader.cs
- HostedNamedPipeTransportManager.cs
- CompositeControl.cs
- CommonXSendMessage.cs
- RelationshipConverter.cs
- ADRoleFactory.cs
- LazyTextWriterCreator.cs
- TransactionScopeDesigner.cs
- EventLogTraceListener.cs
- CustomValidator.cs
- TextElementCollection.cs
- ProgressBarAutomationPeer.cs
- XpsS0ValidatingLoader.cs
- ComponentCollection.cs
- SoapAttributeOverrides.cs
- IpcChannelHelper.cs
- ZipIOExtraField.cs
- DataGridViewSelectedCellCollection.cs
- SqlBulkCopyColumnMapping.cs
- SrgsItemList.cs
- FormView.cs
- EditorPartChrome.cs
- OwnerDrawPropertyBag.cs
- ConstantSlot.cs
- XamlReader.cs
- FormViewPagerRow.cs
- ActionFrame.cs
- ProtocolsConfiguration.cs
- ColorKeyFrameCollection.cs
- BindableAttribute.cs
- FlowDocument.cs
- DirtyTextRange.cs
- TimeoutHelper.cs
- AnimationTimeline.cs