Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- HandlerFactoryWrapper.cs
- printdlgexmarshaler.cs
- XmlDataSourceNodeDescriptor.cs
- FormViewPagerRow.cs
- EdmEntityTypeAttribute.cs
- CompilerErrorCollection.cs
- DataGridItemAttachedStorage.cs
- BlockExpression.cs
- SapiRecoContext.cs
- TreeViewItem.cs
- TreeViewDataItemAutomationPeer.cs
- dataprotectionpermissionattribute.cs
- InkSerializer.cs
- Transform.cs
- HiddenFieldPageStatePersister.cs
- ArraySortHelper.cs
- BuildProviderCollection.cs
- SrgsGrammar.cs
- CodePageUtils.cs
- Material.cs
- HashCodeCombiner.cs
- SecondaryIndexList.cs
- CurrencyManager.cs
- OdbcDataAdapter.cs
- SafeLocalAllocation.cs
- DocumentCollection.cs
- EndCreateSecurityTokenRequest.cs
- Pair.cs
- D3DImage.cs
- TabletDevice.cs
- DesignerActionVerbList.cs
- OpCellTreeNode.cs
- PipelineModuleStepContainer.cs
- DoWhile.cs
- SettingsPropertyIsReadOnlyException.cs
- ColumnTypeConverter.cs
- RoleService.cs
- AddressHeaderCollection.cs
- MediaContextNotificationWindow.cs
- MetaForeignKeyColumn.cs
- OleAutBinder.cs
- BoundingRectTracker.cs
- OleDbPermission.cs
- Ray3DHitTestResult.cs
- COM2IProvidePropertyBuilderHandler.cs
- ControlPersister.cs
- CodeTypeDeclarationCollection.cs
- HandledEventArgs.cs
- TextPatternIdentifiers.cs
- M3DUtil.cs
- ActivityDesignerAccessibleObject.cs
- OutputCacheModule.cs
- TypeValidationEventArgs.cs
- EntityDataSourceView.cs
- ImageMetadata.cs
- DataSourceUtil.cs
- TemplatePropertyEntry.cs
- CodeFieldReferenceExpression.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- ResourceWriter.cs
- IpcChannel.cs
- SmiMetaData.cs
- AuthenticationModuleElementCollection.cs
- WebPartAddingEventArgs.cs
- DeviceContexts.cs
- StorageAssociationSetMapping.cs
- _DynamicWinsockMethods.cs
- OLEDB_Enum.cs
- ModelTreeEnumerator.cs
- MaterialCollection.cs
- ManipulationDeltaEventArgs.cs
- XmlAttributeOverrides.cs
- ObjectItemNoOpAssemblyLoader.cs
- PieceDirectory.cs
- XmlElementList.cs
- bidPrivateBase.cs
- RuleSettingsCollection.cs
- JsonDeserializer.cs
- CompoundFileDeflateTransform.cs
- PageParser.cs
- EntityClientCacheKey.cs
- Semaphore.cs
- ComponentSerializationService.cs
- CardSpaceException.cs
- ACL.cs
- ZipQueryOperator.cs
- InvalidDocumentContentsException.cs
- ListView.cs
- ToolBarPanel.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- ListViewItemEventArgs.cs
- DecoderNLS.cs
- SqlBuilder.cs
- ToolboxSnapDragDropEventArgs.cs
- PropertyTabAttribute.cs
- DrawingDrawingContext.cs
- SQLDouble.cs
- TemplateControlCodeDomTreeGenerator.cs
- Trace.cs
- IssuedSecurityTokenProvider.cs