Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / BrowsableAttribute.cs / 1 / BrowsableAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public sealed class BrowsableAttribute : Attribute { ///Specifies whether a property or event should be displayed in /// a property browsing window. ////// public static readonly BrowsableAttribute Yes = new BrowsableAttribute(true); ////// Specifies that a property or event can be modified at /// design time. This ////// field is read-only. /// /// public static readonly BrowsableAttribute No = new BrowsableAttribute(false); ////// Specifies that a property or event cannot be modified at /// design time. This ///field is read-only. /// /// public static readonly BrowsableAttribute Default = Yes; private bool browsable = true; ///Specifies the default value for the ///, /// which is . This field is read-only. /// public BrowsableAttribute(bool browsable) { this.browsable = browsable; } ///Initializes a new instance of the ///class. /// public bool Browsable { get { return browsable; } } ////// Gets a value indicating whether an object is browsable. /// ////// /// public override bool Equals(object obj) { if (obj == this) { return true; } BrowsableAttribute other = obj as BrowsableAttribute; return (other != null) && other.Browsable == browsable; } ////// public override int GetHashCode() { return browsable.GetHashCode(); } ///[To be supplied.] ////// /// public override bool IsDefaultAttribute() { return (this.Equals(Default)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public sealed class BrowsableAttribute : Attribute { ///Specifies whether a property or event should be displayed in /// a property browsing window. ////// public static readonly BrowsableAttribute Yes = new BrowsableAttribute(true); ////// Specifies that a property or event can be modified at /// design time. This ////// field is read-only. /// /// public static readonly BrowsableAttribute No = new BrowsableAttribute(false); ////// Specifies that a property or event cannot be modified at /// design time. This ///field is read-only. /// /// public static readonly BrowsableAttribute Default = Yes; private bool browsable = true; ///Specifies the default value for the ///, /// which is . This field is read-only. /// public BrowsableAttribute(bool browsable) { this.browsable = browsable; } ///Initializes a new instance of the ///class. /// public bool Browsable { get { return browsable; } } ////// Gets a value indicating whether an object is browsable. /// ////// /// public override bool Equals(object obj) { if (obj == this) { return true; } BrowsableAttribute other = obj as BrowsableAttribute; return (other != null) && other.Browsable == browsable; } ////// public override int GetHashCode() { return browsable.GetHashCode(); } ///[To be supplied.] ////// /// public override bool IsDefaultAttribute() { return (this.Equals(Default)); } } } // 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
- EntityDataSourceEntitySetNameItem.cs
- InheritanceRules.cs
- ApplicationSettingsBase.cs
- ControlLocalizer.cs
- SoapExtensionStream.cs
- ApplicationSecurityManager.cs
- Crypto.cs
- ProxyHwnd.cs
- _HTTPDateParse.cs
- ClientSettingsStore.cs
- DataGridViewRowStateChangedEventArgs.cs
- HtmlEncodedRawTextWriter.cs
- DropDownButton.cs
- BidirectionalDictionary.cs
- XmlCodeExporter.cs
- TransportReplyChannelAcceptor.cs
- SymbolResolver.cs
- WebPartVerb.cs
- SurrogateDataContract.cs
- ZoneIdentityPermission.cs
- WriteableBitmap.cs
- RemoteWebConfigurationHostStream.cs
- XmlStringTable.cs
- SqlUserDefinedAggregateAttribute.cs
- ACL.cs
- UICuesEvent.cs
- MultilineStringConverter.cs
- DefaultHttpHandler.cs
- OdbcTransaction.cs
- ImageDrawing.cs
- NavigateEvent.cs
- namescope.cs
- ProtocolsConfigurationEntry.cs
- Helpers.cs
- XmlDomTextWriter.cs
- StrongNameUtility.cs
- FaultDesigner.cs
- MailBnfHelper.cs
- QueuePathDialog.cs
- HtmlControl.cs
- XmlResolver.cs
- Lease.cs
- ToggleButtonAutomationPeer.cs
- DescriptionAttribute.cs
- CommandValueSerializer.cs
- SafeRegistryHandle.cs
- WorkItem.cs
- ScrollChrome.cs
- Mapping.cs
- DetailsViewPagerRow.cs
- XmlAnyElementAttribute.cs
- IndexOutOfRangeException.cs
- PrinterSettings.cs
- Column.cs
- FixedDSBuilder.cs
- PersonalizationState.cs
- BaseCodePageEncoding.cs
- GenericPrincipal.cs
- WsdlImporterElementCollection.cs
- CodeIdentifiers.cs
- ObjectPersistData.cs
- TypeLoader.cs
- DataMemberConverter.cs
- EventWaitHandle.cs
- DesignerSerializerAttribute.cs
- HttpHandlerActionCollection.cs
- IisTraceListener.cs
- PriorityChain.cs
- RadioButtonFlatAdapter.cs
- Types.cs
- HiddenFieldDesigner.cs
- DocumentGridPage.cs
- ContextBase.cs
- KeyedPriorityQueue.cs
- DataGridItemEventArgs.cs
- RelationshipNavigation.cs
- PositiveTimeSpanValidatorAttribute.cs
- PatternMatcher.cs
- DataRow.cs
- XamlToRtfParser.cs
- Roles.cs
- RectValueSerializer.cs
- Sql8ExpressionRewriter.cs
- MenuItemStyleCollection.cs
- TableLayoutSettings.cs
- ActivityBuilderHelper.cs
- Query.cs
- HtmlInputPassword.cs
- ShapingWorkspace.cs
- XPathCompileException.cs
- TemplatePartAttribute.cs
- UnsettableComboBox.cs
- EntityContainerAssociationSet.cs
- TabItem.cs
- Subtree.cs
- RecordManager.cs
- AccessDataSourceWizardForm.cs
- XmlNodeReader.cs
- CodeDelegateCreateExpression.cs
- TransformerConfigurationWizardBase.cs