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 / ControlBuilderAttribute.cs / 1 / ControlBuilderAttribute.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 ControlBuilderAttribute : Attribute { ///Allows a control to specify a custom ///object /// for building that control within the ASP.NET parser. /// /// public static readonly ControlBuilderAttribute Default = new ControlBuilderAttribute(null); private Type builderType = null; ///The default ///object is a /// builder. This field is read-only. /// public ControlBuilderAttribute(Type builderType) { this.builderType = builderType; } ////// public Type BuilderType { get { return builderType; } } ///Indicates XXX. This property is read-only. ////// /// public override int GetHashCode() { return ((BuilderType != null) ? BuilderType.GetHashCode() : 0); } ///[To be supplied.] ////// /// public override bool Equals(object obj) { if (obj == this) { return true; } if ((obj != null) && (obj is ControlBuilderAttribute)) { return((ControlBuilderAttribute)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 ControlBuilderAttribute : Attribute { ///Allows a control to specify a custom ///object /// for building that control within the ASP.NET parser. /// /// public static readonly ControlBuilderAttribute Default = new ControlBuilderAttribute(null); private Type builderType = null; ///The default ///object is a /// builder. This field is read-only. /// public ControlBuilderAttribute(Type builderType) { this.builderType = builderType; } ////// public Type BuilderType { get { return builderType; } } ///Indicates XXX. This property is read-only. ////// /// public override int GetHashCode() { return ((BuilderType != null) ? BuilderType.GetHashCode() : 0); } ///[To be supplied.] ////// /// public override bool Equals(object obj) { if (obj == this) { return true; } if ((obj != null) && (obj is ControlBuilderAttribute)) { return((ControlBuilderAttribute)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
- QueryGenerator.cs
- Encoding.cs
- FamilyTypefaceCollection.cs
- SQLDoubleStorage.cs
- RoleManagerEventArgs.cs
- RNGCryptoServiceProvider.cs
- FontWeightConverter.cs
- Journaling.cs
- TemplatedWizardStep.cs
- EdmSchemaError.cs
- SqlProfileProvider.cs
- NamespaceEmitter.cs
- PolyBezierSegment.cs
- DetailsView.cs
- TriggerActionCollection.cs
- ForwardPositionQuery.cs
- KoreanCalendar.cs
- PathStreamGeometryContext.cs
- XmlIgnoreAttribute.cs
- TextEndOfSegment.cs
- _NestedMultipleAsyncResult.cs
- TraceContextRecord.cs
- ISAPIApplicationHost.cs
- PersistenceContextEnlistment.cs
- DataTablePropertyDescriptor.cs
- AssemblyHash.cs
- SafeFileMappingHandle.cs
- CalendarKeyboardHelper.cs
- ExternalFile.cs
- ListViewItemEventArgs.cs
- ViewCellSlot.cs
- EncoderExceptionFallback.cs
- XPathNodeInfoAtom.cs
- FormViewModeEventArgs.cs
- CommandValueSerializer.cs
- CallContext.cs
- Path.cs
- HttpHandlerAction.cs
- _SafeNetHandles.cs
- LeaseManager.cs
- DataTableCollection.cs
- ReferencedAssembly.cs
- TextAnchor.cs
- NativeRightsManagementAPIsStructures.cs
- GraphicsContainer.cs
- BufferedOutputAsyncStream.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- PointCollectionValueSerializer.cs
- EventProviderWriter.cs
- ToolStripRenderer.cs
- ArraySortHelper.cs
- Rotation3DAnimationUsingKeyFrames.cs
- DateTimeConverter2.cs
- TrueReadOnlyCollection.cs
- StringStorage.cs
- SafeNativeMemoryHandle.cs
- CoreSwitches.cs
- SafeSecurityHandles.cs
- ArgumentOutOfRangeException.cs
- Attributes.cs
- ExpressionConverter.cs
- BaseTreeIterator.cs
- CodeCommentStatement.cs
- Nullable.cs
- DocumentGrid.cs
- FieldDescriptor.cs
- NegotiateStream.cs
- RadioButton.cs
- ColorConvertedBitmap.cs
- EditorBrowsableAttribute.cs
- FixedSOMPage.cs
- DbXmlEnabledProviderManifest.cs
- BinaryMessageFormatter.cs
- ClientTargetSection.cs
- configsystem.cs
- WorkflowInstanceExtensionProvider.cs
- XmlDataProvider.cs
- DictionaryEntry.cs
- OutputCacheSettingsSection.cs
- StrongNamePublicKeyBlob.cs
- SecurityTokenRequirement.cs
- ComplusTypeValidator.cs
- PerformanceCounter.cs
- BaseUriWithWildcard.cs
- ConditionValidator.cs
- CollectionView.cs
- DataExchangeServiceBinder.cs
- ExpanderAutomationPeer.cs
- MenuItemCollectionEditorDialog.cs
- TypedTableBase.cs
- CheckBox.cs
- COMException.cs
- EntitySetBase.cs
- DrawingContextWalker.cs
- SqlInfoMessageEvent.cs
- NetCodeGroup.cs
- Keywords.cs
- InputLanguageManager.cs
- JoinGraph.cs
- RSAPKCS1SignatureFormatter.cs