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
- InternalPermissions.cs
- DefaultEvaluationContext.cs
- LinkUtilities.cs
- QueryStringParameter.cs
- DeviceContext2.cs
- LocalValueEnumerator.cs
- DriveInfo.cs
- UncommonField.cs
- WebPartConnectionsConfigureVerb.cs
- XdrBuilder.cs
- EventSinkActivityDesigner.cs
- DesignerActionVerbItem.cs
- MethodSignatureGenerator.cs
- CodePageUtils.cs
- StatusStrip.cs
- FileDataSourceCache.cs
- httpserverutility.cs
- ControlPropertyNameConverter.cs
- TextSchema.cs
- ProcessInfo.cs
- SchemaType.cs
- XappLauncher.cs
- WebUtil.cs
- DefaultEvaluationContext.cs
- RunWorkerCompletedEventArgs.cs
- JournalNavigationScope.cs
- GAC.cs
- EncodingDataItem.cs
- PerformanceCounter.cs
- SeekStoryboard.cs
- KeySplineConverter.cs
- COM2Properties.cs
- WindowsToolbar.cs
- CatalogPartDesigner.cs
- CompilerCollection.cs
- StringComparer.cs
- DataListItem.cs
- httpserverutility.cs
- WithStatement.cs
- DesignerAutoFormatCollection.cs
- DefaultTraceListener.cs
- TemporaryBitmapFile.cs
- ConfigurationStrings.cs
- WindowsRegion.cs
- CustomAttribute.cs
- WinEventTracker.cs
- DataViewListener.cs
- IODescriptionAttribute.cs
- DesignerTransaction.cs
- InstanceKeyCollisionException.cs
- XmlSerializationWriter.cs
- SchemaAttDef.cs
- ObjectHandle.cs
- FontSourceCollection.cs
- ThreadAttributes.cs
- DataListItemEventArgs.cs
- XmlNodeChangedEventManager.cs
- TransformValueSerializer.cs
- RootBrowserWindowAutomationPeer.cs
- HtmlElementCollection.cs
- ObjectViewListener.cs
- DelegatingTypeDescriptionProvider.cs
- GenericTextProperties.cs
- RestClientProxyHandler.cs
- GridViewRowCollection.cs
- TextRangeEdit.cs
- ISCIIEncoding.cs
- DefaultValueConverter.cs
- MouseOverProperty.cs
- LineMetrics.cs
- DataGridViewCheckBoxColumn.cs
- WebHeaderCollection.cs
- ToolStripPanel.cs
- DBBindings.cs
- SpecularMaterial.cs
- DataSourceProvider.cs
- LocalizableAttribute.cs
- BitmapEffectrendercontext.cs
- EntityDataSourceWrapper.cs
- MsmqElementBase.cs
- DesignSurfaceServiceContainer.cs
- VisualTreeUtils.cs
- EntityDataSourceConfigureObjectContext.cs
- LabelExpression.cs
- AssertFilter.cs
- Baml2006SchemaContext.cs
- DataGridViewElement.cs
- XmlStreamedByteStreamReader.cs
- DoubleAnimationClockResource.cs
- _ProxyChain.cs
- TraceSection.cs
- HttpVersion.cs
- ZeroOpNode.cs
- RenderCapability.cs
- coordinatorscratchpad.cs
- UriTemplateCompoundPathSegment.cs
- Publisher.cs
- ConnectionManagementSection.cs
- PackWebResponse.cs
- CustomBinding.cs