Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- ArcSegment.cs
- TextEndOfParagraph.cs
- WarningException.cs
- SmtpMail.cs
- FileUtil.cs
- WebPartTransformer.cs
- NumericUpDownAcceleration.cs
- TabletCollection.cs
- SqlFlattener.cs
- _SpnDictionary.cs
- QilReference.cs
- CookieParameter.cs
- XmlSchemaAny.cs
- XAMLParseException.cs
- MinMaxParagraphWidth.cs
- XmlMembersMapping.cs
- Vector3DValueSerializer.cs
- MatchAttribute.cs
- IncrementalCompileAnalyzer.cs
- SystemIPv4InterfaceProperties.cs
- Latin1Encoding.cs
- ContentElementAutomationPeer.cs
- DispatcherObject.cs
- IncrementalHitTester.cs
- SafeRightsManagementQueryHandle.cs
- TextEditorMouse.cs
- OdbcTransaction.cs
- WindowHelperService.cs
- ObjectListCommandsPage.cs
- X509CertificateCollection.cs
- SrgsToken.cs
- AutomationPatternInfo.cs
- UserNameSecurityToken.cs
- ProxySimple.cs
- AutoFocusStyle.xaml.cs
- XPathPatternParser.cs
- Expression.cs
- AnnotationAuthorChangedEventArgs.cs
- CompiledQueryCacheKey.cs
- QueryTaskGroupState.cs
- EventSourceCreationData.cs
- SqlException.cs
- DbCommandDefinition.cs
- FixedSOMTextRun.cs
- Ops.cs
- WmlImageAdapter.cs
- dbenumerator.cs
- CommandBinding.cs
- ModuleBuilderData.cs
- Substitution.cs
- DataSourceXmlSerializer.cs
- AssemblyFilter.cs
- TemplateBindingExpressionConverter.cs
- BulletChrome.cs
- ErrorLog.cs
- RemoteAsymmetricSignatureFormatter.cs
- BulletedListEventArgs.cs
- Soap.cs
- ProxyWebPartConnectionCollection.cs
- SelectionPattern.cs
- ListDesigner.cs
- EntityParameter.cs
- MetadataException.cs
- HtmlContainerControl.cs
- SystemIPv6InterfaceProperties.cs
- BaseTemplateParser.cs
- FormsAuthentication.cs
- CommonXSendMessage.cs
- SqlOuterApplyReducer.cs
- WebPartEventArgs.cs
- InvokeAction.cs
- MDIWindowDialog.cs
- GatewayIPAddressInformationCollection.cs
- WindowsListViewScroll.cs
- PictureBox.cs
- ChtmlCommandAdapter.cs
- XmlDataSource.cs
- FormatterConverter.cs
- FrugalList.cs
- TaiwanCalendar.cs
- SqlComparer.cs
- TranslateTransform.cs
- cache.cs
- SourceElementsCollection.cs
- ExpandedWrapper.cs
- TdsParameterSetter.cs
- DataGridLinkButton.cs
- ToolStripLabel.cs
- PanelDesigner.cs
- CallbackException.cs
- SolidBrush.cs
- RawStylusInput.cs
- ComboBox.cs
- AnchoredBlock.cs
- SendKeys.cs
- ArrayItemReference.cs
- UnaryOperationBinder.cs
- TypeReference.cs
- SQLDecimal.cs
- SynchronizationContext.cs