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
- SourceFileBuildProvider.cs
- FileInfo.cs
- MiniModule.cs
- SecUtil.cs
- RightNameExpirationInfoPair.cs
- DocumentationServerProtocol.cs
- DesignerVerbCollection.cs
- AssemblyCollection.cs
- ConcurrencyMode.cs
- SrgsDocumentParser.cs
- SqlCommandSet.cs
- TextCharacters.cs
- RangeBaseAutomationPeer.cs
- UpdatePanelTrigger.cs
- DesignerWithHeader.cs
- QilLiteral.cs
- ExtensionDataObject.cs
- CodeIdentifiers.cs
- StyleSelector.cs
- Positioning.cs
- DataConnectionHelper.cs
- XsdDateTime.cs
- RotateTransform3D.cs
- NativeObjectSecurity.cs
- GenericEnumerator.cs
- DBSqlParser.cs
- EntityFrameworkVersions.cs
- TextOutput.cs
- SoapSchemaImporter.cs
- EdmSchemaAttribute.cs
- CheckBoxField.cs
- ImageCodecInfoPrivate.cs
- ThumbAutomationPeer.cs
- ProxyWebPartManager.cs
- RadioButtonBaseAdapter.cs
- ProfileGroupSettings.cs
- ArcSegment.cs
- DocumentViewerAutomationPeer.cs
- DateTimePicker.cs
- ManagedWndProcTracker.cs
- PropertyToken.cs
- MatrixAnimationUsingKeyFrames.cs
- BooleanConverter.cs
- ScrollProperties.cs
- SQLInt64.cs
- SkinIDTypeConverter.cs
- DbProviderSpecificTypePropertyAttribute.cs
- TextPenaltyModule.cs
- InvalidAsynchronousStateException.cs
- XamlParser.cs
- NativeActivity.cs
- PenThreadWorker.cs
- DebuggerAttributes.cs
- MetadataPropertyAttribute.cs
- AdditionalEntityFunctions.cs
- Int32Converter.cs
- MeshGeometry3D.cs
- TabRenderer.cs
- CompositeDataBoundControl.cs
- ChineseLunisolarCalendar.cs
- ServiceAuthorizationElement.cs
- AnnotationObservableCollection.cs
- ButtonRenderer.cs
- CollectionType.cs
- ScopelessEnumAttribute.cs
- CustomExpressionEventArgs.cs
- RealProxy.cs
- EndEvent.cs
- X509CertificateTrustedIssuerElementCollection.cs
- CompositeActivityDesigner.cs
- XmlSchemaCompilationSettings.cs
- HtmlHistory.cs
- TCPListener.cs
- TransformerConfigurationWizardBase.cs
- Image.cs
- UpdatePanelTriggerCollection.cs
- WindowsSspiNegotiation.cs
- BamlLocalizabilityResolver.cs
- ConditionedDesigner.cs
- x509store.cs
- XmlTextEncoder.cs
- GacUtil.cs
- TwoPhaseCommitProxy.cs
- TextEndOfLine.cs
- PeerNameResolver.cs
- ConnectionProviderAttribute.cs
- ProviderBase.cs
- LoadWorkflowByKeyAsyncResult.cs
- Brush.cs
- SessionPageStatePersister.cs
- ProfileService.cs
- ThrowOnMultipleAssignment.cs
- WebServicesSection.cs
- PrtCap_Reader.cs
- MatrixCamera.cs
- TypeDependencyAttribute.cs
- Schema.cs
- MiniModule.cs
- IDataContractSurrogate.cs
- DecoderReplacementFallback.cs