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
- QilGenerator.cs
- AuthenticateEventArgs.cs
- BulletedListEventArgs.cs
- XmlSchemaSimpleType.cs
- WebPartConnectionsConfigureVerb.cs
- XPathMessageContext.cs
- DataServiceBehavior.cs
- ScriptComponentDescriptor.cs
- GCHandleCookieTable.cs
- IODescriptionAttribute.cs
- FactoryId.cs
- InstanceDescriptor.cs
- X509ChainElement.cs
- TextView.cs
- HtmlTernaryTree.cs
- RenderContext.cs
- ConditionedDesigner.cs
- processwaithandle.cs
- ExtendLockCommand.cs
- _NtlmClient.cs
- DataGridViewRow.cs
- DataGridView.cs
- TextElement.cs
- Geometry.cs
- MenuItemAutomationPeer.cs
- AssociationTypeEmitter.cs
- httpstaticobjectscollection.cs
- StateMachineWorkflowDesigner.cs
- EncodingStreamWrapper.cs
- DocumentReferenceCollection.cs
- LinkDesigner.cs
- _ConnectStream.cs
- SystemWebExtensionsSectionGroup.cs
- ToolStripPanelRenderEventArgs.cs
- FunctionOverloadResolver.cs
- TemplatedMailWebEventProvider.cs
- safelink.cs
- ReflectionTypeLoadException.cs
- CustomAttributeSerializer.cs
- DataGridViewCellMouseEventArgs.cs
- CompilerScope.cs
- HttpInputStream.cs
- ImplicitInputBrush.cs
- DataBinding.cs
- CompilationSection.cs
- WizardStepBase.cs
- StyleModeStack.cs
- PublishLicense.cs
- UnsafeNativeMethods.cs
- TextContainerChangeEventArgs.cs
- DocComment.cs
- ArithmeticLiteral.cs
- DataGridItemCollection.cs
- FormCollection.cs
- BeginStoryboard.cs
- StylusTip.cs
- ViewBase.cs
- FixedTextSelectionProcessor.cs
- PolicyManager.cs
- TypeBuilder.cs
- Certificate.cs
- ContractsBCL.cs
- EdmTypeAttribute.cs
- TransportManager.cs
- COM2ExtendedUITypeEditor.cs
- ProcessHost.cs
- Emitter.cs
- ClientFormsIdentity.cs
- TransformPattern.cs
- _Connection.cs
- SHA512Cng.cs
- AxisAngleRotation3D.cs
- CachedCompositeFamily.cs
- BlurBitmapEffect.cs
- XsdValidatingReader.cs
- Pair.cs
- ToolStripPanel.cs
- ThemeDirectoryCompiler.cs
- EdmProperty.cs
- MsmqActivation.cs
- TdsParserSafeHandles.cs
- CodePrimitiveExpression.cs
- DataListCommandEventArgs.cs
- OleDbRowUpdatingEvent.cs
- LineMetrics.cs
- BinaryObjectWriter.cs
- DesigntimeLicenseContextSerializer.cs
- XmlSiteMapProvider.cs
- UpDownBaseDesigner.cs
- DescendentsWalker.cs
- AuthenticationException.cs
- ValidationRuleCollection.cs
- CopyNodeSetAction.cs
- CertificateManager.cs
- HttpStaticObjectsCollectionWrapper.cs
- ServiceOperationHelpers.cs
- DesignerSerializerAttribute.cs
- ScriptModule.cs
- ConsoleCancelEventArgs.cs
- EditorPartChrome.cs