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
- CornerRadius.cs
- DynamicResourceExtensionConverter.cs
- TemplateDefinition.cs
- SymbolTable.cs
- ForAllOperator.cs
- CapabilitiesAssignment.cs
- SQLBinaryStorage.cs
- SQLByteStorage.cs
- Pair.cs
- ClientCultureInfo.cs
- FixedTextContainer.cs
- CodeAccessPermission.cs
- __Filters.cs
- UpdateTranslator.cs
- StorageComplexPropertyMapping.cs
- Repeater.cs
- DoubleAnimationBase.cs
- OrCondition.cs
- RowToFieldTransformer.cs
- TraceContext.cs
- UnsafeMethods.cs
- FtpWebResponse.cs
- TdsParameterSetter.cs
- ThreadPoolTaskScheduler.cs
- WindowHelperService.cs
- UIElement.cs
- Sequence.cs
- TempFiles.cs
- BufferedGraphicsManager.cs
- PreProcessInputEventArgs.cs
- NumberAction.cs
- Codec.cs
- EventLogRecord.cs
- RtfControlWordInfo.cs
- ConfigurationSettings.cs
- PrtTicket_Editor.cs
- StorageEntityTypeMapping.cs
- HttpApplication.cs
- PasswordRecovery.cs
- SafeNativeMethodsOther.cs
- _ServiceNameStore.cs
- InfoCardRequestException.cs
- COM2TypeInfoProcessor.cs
- ServiceBehaviorAttribute.cs
- HttpDateParse.cs
- DbConnectionClosed.cs
- CellParagraph.cs
- DataFormats.cs
- BamlTreeUpdater.cs
- SystemSounds.cs
- GeneratedCodeAttribute.cs
- FieldNameLookup.cs
- EntityCommandExecutionException.cs
- DecimalFormatter.cs
- RotateTransform3D.cs
- SQLResource.cs
- BamlVersionHeader.cs
- _SSPISessionCache.cs
- TreeNodeMouseHoverEvent.cs
- PerformanceCounterCategory.cs
- __Filters.cs
- TextDecorationUnitValidation.cs
- LinqDataSourceUpdateEventArgs.cs
- DynamicPropertyReader.cs
- Thickness.cs
- SQLMembershipProvider.cs
- QilInvokeLateBound.cs
- XmlNullResolver.cs
- InstanceKeyView.cs
- SqlTransaction.cs
- OleDbInfoMessageEvent.cs
- TogglePattern.cs
- BridgeDataReader.cs
- DataServiceProviderWrapper.cs
- ColorMap.cs
- CompiledRegexRunnerFactory.cs
- SplashScreen.cs
- NeutralResourcesLanguageAttribute.cs
- TagPrefixCollection.cs
- basecomparevalidator.cs
- RijndaelManagedTransform.cs
- AnonymousIdentificationSection.cs
- PathFigureCollection.cs
- TraceSection.cs
- NavigationPropertyEmitter.cs
- DataGridViewColumnConverter.cs
- NameScopePropertyAttribute.cs
- DoubleAnimationBase.cs
- Grant.cs
- EdmTypeAttribute.cs
- GPStream.cs
- Baml6Assembly.cs
- IItemContainerGenerator.cs
- WebUtil.cs
- ImageClickEventArgs.cs
- InkCollectionBehavior.cs
- DetailsViewRowCollection.cs
- TabControlCancelEvent.cs
- CachedFontFamily.cs
- WorkflowOwnershipException.cs