Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / UrlPropertyAttribute.cs / 1305376 / UrlPropertyAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; using System.Web.Util; // An UrlPropertyAttribute metadata attribute can be applied to string // properties that contain URL values. // This can be used to identify URLs which allows design-time functionality and runtime // functionality to do interesting things with the property values. [AttributeUsage(AttributeTargets.Property)] public sealed class UrlPropertyAttribute : Attribute { private string _filter; // Used to mark a property as an URL. public UrlPropertyAttribute() : this("*.*") { } // Used to mark a property as an URL. In addition, the type of files allowed // can be specified. This can be used at design-time to customize the URL picker. public UrlPropertyAttribute(string filter) { if(filter == null) { _filter = "*.*"; } else { _filter = filter; } } // The file filter associated with the URL property. This takes // the form of a file filter string typically used with Open File // dialogs. The default is *.*, so all file types can be chosen. public string Filter { get { return _filter; } } public override int GetHashCode() { return Filter.GetHashCode(); } public override bool Equals(object obj) { if (obj == this) { return true; } UrlPropertyAttribute other = obj as UrlPropertyAttribute; if (other != null) { return Filter.Equals(other.Filter); } 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
- Bidi.cs
- SafeNativeMethods.cs
- RadioButtonStandardAdapter.cs
- ContainerActivationHelper.cs
- NamespaceMapping.cs
- DataGridSortCommandEventArgs.cs
- MsmqVerifier.cs
- AnnouncementEventArgs.cs
- HtmlInputCheckBox.cs
- FileDetails.cs
- LiteralSubsegment.cs
- ProvidersHelper.cs
- MgmtResManager.cs
- SqlDataSourceQuery.cs
- DesignerVerb.cs
- BufferModesCollection.cs
- EpmSyndicationContentSerializer.cs
- UnionQueryOperator.cs
- ReferencedCollectionType.cs
- WebSysDefaultValueAttribute.cs
- NamedPipeConnectionPoolSettingsElement.cs
- LinqDataSourceContextEventArgs.cs
- StubHelpers.cs
- Ipv6Element.cs
- IndentedWriter.cs
- Annotation.cs
- StringKeyFrameCollection.cs
- StreamGeometry.cs
- SynchronizationLockException.cs
- BindableAttribute.cs
- GrammarBuilderWildcard.cs
- ClassicBorderDecorator.cs
- Ticks.cs
- RegexCharClass.cs
- WindowsIPAddress.cs
- StylusPointPropertyInfo.cs
- StructuredProperty.cs
- PhysicalFontFamily.cs
- RootProfilePropertySettingsCollection.cs
- SimpleColumnProvider.cs
- Pair.cs
- RowToParametersTransformer.cs
- NativeMethods.cs
- AxisAngleRotation3D.cs
- BaseTransportHeaders.cs
- ConfigurationManagerInternal.cs
- DataBoundLiteralControl.cs
- IsolatedStorageFile.cs
- SqlCacheDependency.cs
- ReferencedCollectionType.cs
- SRef.cs
- FixedSOMTableCell.cs
- WebConfigurationHostFileChange.cs
- TreeNodeMouseHoverEvent.cs
- InvalidOperationException.cs
- ZipPackagePart.cs
- NameValuePair.cs
- DataServiceContext.cs
- ToolStripGripRenderEventArgs.cs
- TextWriterTraceListener.cs
- XamlHostingConfiguration.cs
- MatrixAnimationUsingKeyFrames.cs
- TdsParameterSetter.cs
- smtpconnection.cs
- WindowsToolbarAsMenu.cs
- EnumConverter.cs
- XmlChildNodes.cs
- SwitchElementsCollection.cs
- ReadingWritingEntityEventArgs.cs
- RoleExceptions.cs
- brushes.cs
- InstanceDataCollection.cs
- KeyValuePairs.cs
- CqlLexer.cs
- TimelineGroup.cs
- EventSetter.cs
- PeerNameResolver.cs
- PeerNameRecordCollection.cs
- ListViewGroupItemCollection.cs
- Visual3DCollection.cs
- DebugControllerThread.cs
- DataGridToolTip.cs
- DoubleKeyFrameCollection.cs
- CompiledRegexRunnerFactory.cs
- PropertyInformation.cs
- PictureBox.cs
- SqlFactory.cs
- EntityDataSourceView.cs
- DbProviderFactory.cs
- DependencyPropertyDescriptor.cs
- SymbolTable.cs
- SoapException.cs
- COMException.cs
- SiteMapNode.cs
- FrameworkElement.cs
- HttpCacheVary.cs
- TreeChangeInfo.cs
- GenericNameHandler.cs
- XmlCharacterData.cs
- EventData.cs