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
- ScrollBarRenderer.cs
- RightsManagementInformation.cs
- StructuralType.cs
- X509CertificateCollection.cs
- versioninfo.cs
- BuilderPropertyEntry.cs
- DSASignatureFormatter.cs
- HostProtectionException.cs
- ToolTipAutomationPeer.cs
- ConfigXmlText.cs
- SafeHandle.cs
- ItemCollection.cs
- CanExecuteRoutedEventArgs.cs
- TextBox.cs
- PointConverter.cs
- ParseNumbers.cs
- StringValidatorAttribute.cs
- ObjectDataSourceStatusEventArgs.cs
- ByteStreamGeometryContext.cs
- DesignerWidgets.cs
- HttpWrapper.cs
- BinaryWriter.cs
- ProcessRequestArgs.cs
- OrderedEnumerableRowCollection.cs
- RoleManagerModule.cs
- HMACSHA384.cs
- ApplicationException.cs
- ExceptionUtil.cs
- GenerateTemporaryTargetAssembly.cs
- WorkflowPersistenceService.cs
- XmlSchemaElement.cs
- CorePropertiesFilter.cs
- _DynamicWinsockMethods.cs
- DomainConstraint.cs
- BypassElementCollection.cs
- XmlRootAttribute.cs
- BuilderPropertyEntry.cs
- AttributeEmitter.cs
- SqlInternalConnectionSmi.cs
- SystemThemeKey.cs
- ServicePointManager.cs
- DelegateSerializationHolder.cs
- NetMsmqBindingElement.cs
- Processor.cs
- AbsoluteQuery.cs
- FixedTextBuilder.cs
- FontUnitConverter.cs
- TextUtf8RawTextWriter.cs
- BitmapEffectDrawingContextWalker.cs
- RadioButtonRenderer.cs
- PropertyGeneratedEventArgs.cs
- SelectionUIHandler.cs
- UserPreferenceChangingEventArgs.cs
- ComplexTypeEmitter.cs
- SwitchLevelAttribute.cs
- SqlWorkflowInstanceStoreLock.cs
- NetworkAddressChange.cs
- DataTableNameHandler.cs
- ListViewDeleteEventArgs.cs
- QueueProcessor.cs
- ProxyAssemblyNotLoadedException.cs
- ToolStripLabel.cs
- OrCondition.cs
- UnsafeNativeMethods.cs
- MasterPage.cs
- ServiceModelPerformanceCounters.cs
- HelpInfo.cs
- SqlDataReaderSmi.cs
- ReadOnlyTernaryTree.cs
- Filter.cs
- ChangeInterceptorAttribute.cs
- TableRow.cs
- SQLDateTime.cs
- Triplet.cs
- EntityDataSourceViewSchema.cs
- DeferredRunTextReference.cs
- ListBox.cs
- MimeFormatter.cs
- ListControlBuilder.cs
- StrokeDescriptor.cs
- LineGeometry.cs
- Trigger.cs
- FieldDescriptor.cs
- nulltextcontainer.cs
- StylusTip.cs
- ApplicationId.cs
- Decimal.cs
- StaticTextPointer.cs
- EntityDataSourceContextCreatedEventArgs.cs
- UIElement3DAutomationPeer.cs
- RemoteWebConfigurationHostStream.cs
- TextRange.cs
- GridView.cs
- ReceiveMessageAndVerifySecurityAsyncResultBase.cs
- ProxyWebPartManager.cs
- StringStorage.cs
- AuthenticatingEventArgs.cs
- PageAsyncTaskManager.cs
- GradientStop.cs
- ToolboxSnapDragDropEventArgs.cs