Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / BrowsableAttribute.cs / 1305376 / 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
- Range.cs
- Stack.cs
- MDIClient.cs
- HashSet.cs
- NullableDoubleMinMaxAggregationOperator.cs
- WebPartCatalogCloseVerb.cs
- LoadGrammarCompletedEventArgs.cs
- XmlHierarchyData.cs
- LeftCellWrapper.cs
- ProviderConnectionPoint.cs
- ScriptControl.cs
- SqlDataSourceSummaryPanel.cs
- XmlSignificantWhitespace.cs
- SqlBulkCopy.cs
- GlyphsSerializer.cs
- EventHandlers.cs
- RemoteEndpointMessageProperty.cs
- AdornedElementPlaceholder.cs
- RangeValueProviderWrapper.cs
- ManualWorkflowSchedulerService.cs
- NetStream.cs
- SafePEFileHandle.cs
- DesignerActionService.cs
- XmlUnspecifiedAttribute.cs
- NonVisualControlAttribute.cs
- HttpModulesSection.cs
- PTManager.cs
- AssemblyHash.cs
- ToolStripDesignerAvailabilityAttribute.cs
- CompilerGlobalScopeAttribute.cs
- TemplateGroupCollection.cs
- PageCache.cs
- EditorZoneBase.cs
- LazyTextWriterCreator.cs
- HttpProcessUtility.cs
- TargetParameterCountException.cs
- DbConnectionHelper.cs
- AccessorTable.cs
- Types.cs
- XmlSchemaAny.cs
- ToolZoneDesigner.cs
- MobileCategoryAttribute.cs
- WebBrowserDocumentCompletedEventHandler.cs
- MetadataFile.cs
- RemoteWebConfigurationHostServer.cs
- Translator.cs
- PageWrapper.cs
- SettingsBase.cs
- FileDialogCustomPlacesCollection.cs
- CodeLabeledStatement.cs
- ToolStripContainer.cs
- DbConnectionInternal.cs
- SpoolingTask.cs
- ServiceChannelProxy.cs
- ConnectionManager.cs
- ImageKeyConverter.cs
- XmlEncodedRawTextWriter.cs
- ListItemCollection.cs
- AbstractDataSvcMapFileLoader.cs
- GregorianCalendar.cs
- GridErrorDlg.cs
- Material.cs
- Invariant.cs
- ActiveXMessageFormatter.cs
- DataGridSortCommandEventArgs.cs
- SqlException.cs
- BlockExpression.cs
- WebControl.cs
- AppDomain.cs
- PropVariant.cs
- BaseTreeIterator.cs
- CultureSpecificStringDictionary.cs
- Preprocessor.cs
- DesignTimeParseData.cs
- OutputCacheModule.cs
- PlatformNotSupportedException.cs
- TextEditorCharacters.cs
- WCFModelStrings.Designer.cs
- TimelineGroup.cs
- StylesEditorDialog.cs
- Axis.cs
- CompilerParameters.cs
- RegexInterpreter.cs
- LineSegment.cs
- CancellableEnumerable.cs
- ProcessHostMapPath.cs
- StatusBar.cs
- ListViewCommandEventArgs.cs
- XomlCompiler.cs
- ToolStripMenuItemDesigner.cs
- HashLookup.cs
- ZipIOLocalFileDataDescriptor.cs
- IndicFontClient.cs
- securitycriticaldataformultiplegetandset.cs
- FileDataSource.cs
- CqlLexerHelpers.cs
- BaseCodeDomTreeGenerator.cs
- PeerOutputChannel.cs
- namescope.cs
- StatusBarItemAutomationPeer.cs