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
- ErrorFormatter.cs
- FontFaceLayoutInfo.cs
- TdsParser.cs
- ToolboxCategoryItems.cs
- ToolStripDropDownClosingEventArgs.cs
- DataGridViewCellEventArgs.cs
- panel.cs
- XPathDescendantIterator.cs
- MultiViewDesigner.cs
- Registration.cs
- ManagedIStream.cs
- BitmapEffect.cs
- DashStyle.cs
- RayHitTestParameters.cs
- TransactionContextManager.cs
- PaperSize.cs
- compensatingcollection.cs
- ToolStripItemEventArgs.cs
- DataReaderContainer.cs
- Vector3DCollection.cs
- SqlRowUpdatedEvent.cs
- SplitterPanel.cs
- SequentialUshortCollection.cs
- UrlAuthFailureHandler.cs
- Assembly.cs
- CodeGeneratorAttribute.cs
- ServiceTimeoutsBehavior.cs
- XappLauncher.cs
- EventRoute.cs
- LZCodec.cs
- AlphabetConverter.cs
- COM2ExtendedBrowsingHandler.cs
- Events.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- ListViewGroupItemCollection.cs
- TCEAdapterGenerator.cs
- MobileRedirect.cs
- PolyBezierSegment.cs
- EncoderExceptionFallback.cs
- SqlTopReducer.cs
- SecUtil.cs
- SymmetricAlgorithm.cs
- SelectorAutomationPeer.cs
- AttachedPropertyMethodSelector.cs
- PerformanceCounterNameAttribute.cs
- OrthographicCamera.cs
- RegexRunner.cs
- CryptoConfig.cs
- ArgumentDesigner.xaml.cs
- Point3DCollectionValueSerializer.cs
- Codec.cs
- Mappings.cs
- HyperLinkField.cs
- SafeHandles.cs
- WindowsSecurityTokenAuthenticator.cs
- EntityDataSourceStatementEditor.cs
- SkewTransform.cs
- SettingsProperty.cs
- TypeSystem.cs
- FrameworkContextData.cs
- DataServiceProcessingPipelineEventArgs.cs
- DisplayInformation.cs
- RuntimeCompatibilityAttribute.cs
- Monitor.cs
- GeneralTransformGroup.cs
- _ConnectionGroup.cs
- FixedSOMLineRanges.cs
- KeyedHashAlgorithm.cs
- ModuleConfigurationInfo.cs
- LoadMessageLogger.cs
- ProcessThread.cs
- PasswordRecovery.cs
- EdmError.cs
- EncoderBestFitFallback.cs
- DataGridViewElement.cs
- CqlWriter.cs
- Rect3D.cs
- FindCriteriaApril2005.cs
- SmtpLoginAuthenticationModule.cs
- XPathMessageFilter.cs
- DivideByZeroException.cs
- TreeIterator.cs
- CustomError.cs
- HttpRequest.cs
- JsonEncodingStreamWrapper.cs
- SafeLibraryHandle.cs
- FileSystemWatcher.cs
- OleDbErrorCollection.cs
- SqlTrackingQuery.cs
- GraphicsPath.cs
- SecurityTokenParameters.cs
- HandlerFactoryCache.cs
- ConfigurationValues.cs
- WebService.cs
- PathFigure.cs
- HtmlControl.cs
- DataObjectMethodAttribute.cs
- DebugHandleTracker.cs
- CodeIdentifier.cs
- DynamicResourceExtensionConverter.cs