Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / IDReferencePropertyAttribute.cs / 1 / IDReferencePropertyAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; using System.Security.Permissions; ////// An IDReferencePropertyAttribute metadata attribute can be applied to string properties /// that contain ID references. /// This can be used to identify ID reference properties which allows design-time functionality /// to do interesting things with the property values. /// [AttributeUsage(AttributeTargets.Property)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class IDReferencePropertyAttribute : Attribute { private Type _referencedControlType; ////// public IDReferencePropertyAttribute() : this(typeof(Control)) { } ////// Used to mark a property as an ID reference. In addition, the type of controls /// can be specified. /// public IDReferencePropertyAttribute(Type referencedControlType) { _referencedControlType = referencedControlType; } ////// The types of controls allowed by the property. /// public Type ReferencedControlType { get { return _referencedControlType; } } ///public override int GetHashCode() { return ((ReferencedControlType != null) ? ReferencedControlType.GetHashCode() : 0); } /// public override bool Equals(object obj) { if (obj == this) { return true; } IDReferencePropertyAttribute other = obj as IDReferencePropertyAttribute; if (other != null) { return (ReferencedControlType == other.ReferencedControlType); } return false; } } } // 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; ////// An IDReferencePropertyAttribute metadata attribute can be applied to string properties /// that contain ID references. /// This can be used to identify ID reference properties which allows design-time functionality /// to do interesting things with the property values. /// [AttributeUsage(AttributeTargets.Property)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class IDReferencePropertyAttribute : Attribute { private Type _referencedControlType; ////// public IDReferencePropertyAttribute() : this(typeof(Control)) { } ////// Used to mark a property as an ID reference. In addition, the type of controls /// can be specified. /// public IDReferencePropertyAttribute(Type referencedControlType) { _referencedControlType = referencedControlType; } ////// The types of controls allowed by the property. /// public Type ReferencedControlType { get { return _referencedControlType; } } ///public override int GetHashCode() { return ((ReferencedControlType != null) ? ReferencedControlType.GetHashCode() : 0); } /// public override bool Equals(object obj) { if (obj == this) { return true; } IDReferencePropertyAttribute other = obj as IDReferencePropertyAttribute; if (other != null) { return (ReferencedControlType == other.ReferencedControlType); } return false; } } } // 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
- UnsafeNetInfoNativeMethods.cs
- QilNode.cs
- LinqDataSourceContextEventArgs.cs
- XmlBindingWorker.cs
- FormsAuthenticationUserCollection.cs
- GenericAuthenticationEventArgs.cs
- UrlAuthFailedErrorFormatter.cs
- DataGridViewSortCompareEventArgs.cs
- ErrorEventArgs.cs
- Int32Converter.cs
- SponsorHelper.cs
- BuildManagerHost.cs
- TreeIterator.cs
- SymbolEqualComparer.cs
- DoubleAnimationBase.cs
- BlurBitmapEffect.cs
- ResourcesGenerator.cs
- XPathParser.cs
- CodeArrayCreateExpression.cs
- HttpStreamXmlDictionaryReader.cs
- HighlightVisual.cs
- ElementProxy.cs
- TransportConfigurationTypeElement.cs
- StyleXamlTreeBuilder.cs
- CompositeDataBoundControl.cs
- DataObjectPastingEventArgs.cs
- QueryContinueDragEvent.cs
- MouseGestureValueSerializer.cs
- WindowsAuthenticationEventArgs.cs
- Listbox.cs
- OdbcError.cs
- BinaryWriter.cs
- MemoryFailPoint.cs
- SiteMapProvider.cs
- HtmlEncodedRawTextWriter.cs
- GridViewRowEventArgs.cs
- XmlHierarchyData.cs
- Odbc32.cs
- Scene3D.cs
- ObjectStateEntryDbDataRecord.cs
- PassportAuthentication.cs
- TdsParserHelperClasses.cs
- EntityDataSourceConfigureObjectContext.cs
- VirtualPathExtension.cs
- XmlDataCollection.cs
- SerializationInfo.cs
- WebServiceHandlerFactory.cs
- DrawingContextDrawingContextWalker.cs
- PreviewPrintController.cs
- WeakEventManager.cs
- ThumbAutomationPeer.cs
- Journaling.cs
- TextDecorationCollection.cs
- safex509handles.cs
- FixedSOMSemanticBox.cs
- ImageAttributes.cs
- IriParsingElement.cs
- WebPartConnectVerb.cs
- ConstructorBuilder.cs
- ConfigXmlAttribute.cs
- LinqDataSourceSelectEventArgs.cs
- Transform3DCollection.cs
- ToolboxComponentsCreatingEventArgs.cs
- XmlNamespaceMapping.cs
- GACIdentityPermission.cs
- Events.cs
- VariableDesigner.xaml.cs
- DispatcherSynchronizationContext.cs
- HostingEnvironmentSection.cs
- BaseValidator.cs
- TextTreeObjectNode.cs
- MethodCallTranslator.cs
- ToolboxComponentsCreatingEventArgs.cs
- DropDownButton.cs
- VirtualPath.cs
- webclient.cs
- AsymmetricKeyExchangeFormatter.cs
- DataContractSet.cs
- SchemaImporterExtensionElement.cs
- SetterBaseCollection.cs
- RadioButton.cs
- Rijndael.cs
- SettingsBindableAttribute.cs
- WebBrowserBase.cs
- WindowsTitleBar.cs
- SynchronizedInputAdaptor.cs
- FlatButtonAppearance.cs
- RowCache.cs
- ExpressionPrefixAttribute.cs
- SqlFacetAttribute.cs
- ContextMenu.cs
- HashHelper.cs
- TcpTransportSecurityElement.cs
- GregorianCalendar.cs
- DataRecordInternal.cs
- __TransparentProxy.cs
- AssociationProvider.cs
- Event.cs
- XPathExpr.cs
- DetailsViewUpdatedEventArgs.cs