Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PrintingPermission.cs
- Vector3DValueSerializer.cs
- SuppressIldasmAttribute.cs
- SQLInt32Storage.cs
- ReadOnlyCollection.cs
- ShortcutKeysEditor.cs
- SelectionPatternIdentifiers.cs
- GACMembershipCondition.cs
- SessionStateModule.cs
- HttpClientCertificate.cs
- SerializationSectionGroup.cs
- DataGridSortCommandEventArgs.cs
- SQLByteStorage.cs
- DBCommandBuilder.cs
- WSSecureConversationFeb2005.cs
- UnauthorizedWebPart.cs
- ImageMapEventArgs.cs
- XmlSchemaSimpleTypeList.cs
- RuntimeHelpers.cs
- TimeoutException.cs
- HwndSourceKeyboardInputSite.cs
- PipeStream.cs
- PrimitiveType.cs
- MissingManifestResourceException.cs
- DataExpression.cs
- TextTreeText.cs
- InkCanvasSelection.cs
- IisTraceWebEventProvider.cs
- StopStoryboard.cs
- FragmentQueryProcessor.cs
- ForeignKeyConstraint.cs
- StackSpiller.Bindings.cs
- Int32Storage.cs
- ValueChangedEventManager.cs
- Pens.cs
- DataPagerCommandEventArgs.cs
- Point3DAnimationBase.cs
- CurrencyWrapper.cs
- XmlDocumentType.cs
- NavigationProgressEventArgs.cs
- AcceleratedTokenAuthenticator.cs
- UserControlBuildProvider.cs
- QilNode.cs
- IsolatedStorage.cs
- DataGridViewImageCell.cs
- UrlParameterReader.cs
- UshortList2.cs
- DataControlPagerLinkButton.cs
- IisHelper.cs
- _IPv6Address.cs
- WS2007FederationHttpBindingElement.cs
- DeviceSpecificChoice.cs
- __Filters.cs
- DataGridViewColumnEventArgs.cs
- DataPagerField.cs
- DEREncoding.cs
- SplitterEvent.cs
- WebBodyFormatMessageProperty.cs
- ArglessEventHandlerProxy.cs
- PtsHelper.cs
- DataGridViewRowPrePaintEventArgs.cs
- SerializableAttribute.cs
- ReplyAdapterChannelListener.cs
- ScriptReferenceBase.cs
- DBCommandBuilder.cs
- BooleanAnimationUsingKeyFrames.cs
- PropertyChangeTracker.cs
- ClientTargetCollection.cs
- WindowInteractionStateTracker.cs
- CallTemplateAction.cs
- SynthesizerStateChangedEventArgs.cs
- SqlSupersetValidator.cs
- CellParaClient.cs
- IQueryable.cs
- BuildResultCache.cs
- NavigationWindowAutomationPeer.cs
- SiteMapHierarchicalDataSourceView.cs
- KnownColorTable.cs
- ResXResourceWriter.cs
- SkewTransform.cs
- _WebProxyDataBuilder.cs
- PackUriHelper.cs
- NameNode.cs
- RuntimeConfigurationRecord.cs
- ListBoxAutomationPeer.cs
- SmtpLoginAuthenticationModule.cs
- IOThreadTimer.cs
- OleDbRowUpdatingEvent.cs
- SQLResource.cs
- BaseCodePageEncoding.cs
- InteropAutomationProvider.cs
- ColorAnimationBase.cs
- ObjectHandle.cs
- SafeEventLogWriteHandle.cs
- Span.cs
- GreenMethods.cs
- DataGridViewTextBoxCell.cs
- StatusBarItem.cs
- DataServiceHost.cs
- SessionSwitchEventArgs.cs