Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- RepeaterCommandEventArgs.cs
- MetaModel.cs
- ValueOfAction.cs
- AttributeQuery.cs
- CheckBoxField.cs
- XslAstAnalyzer.cs
- WebBrowserNavigatedEventHandler.cs
- TimeStampChecker.cs
- IntPtr.cs
- FixedSchema.cs
- WsiProfilesElementCollection.cs
- UserControlCodeDomTreeGenerator.cs
- MessageBox.cs
- RectangleConverter.cs
- UrlMappingCollection.cs
- IIS7UserPrincipal.cs
- DynamicILGenerator.cs
- ControlType.cs
- TypeDescriptorContext.cs
- ObjectNavigationPropertyMapping.cs
- NativeConfigurationLoader.cs
- PersonalizationProviderHelper.cs
- Listbox.cs
- MachineKeySection.cs
- FolderLevelBuildProviderCollection.cs
- RemotingException.cs
- PriorityRange.cs
- SecureEnvironment.cs
- OdbcDataAdapter.cs
- FontFamilyConverter.cs
- PaintEvent.cs
- MachineSettingsSection.cs
- AdobeCFFWrapper.cs
- XmlSchemas.cs
- CodeVariableReferenceExpression.cs
- ContextMenuService.cs
- DirectoryNotFoundException.cs
- Vector.cs
- SQLSingle.cs
- ParseElementCollection.cs
- StringUtil.cs
- XmlSchemaValidationException.cs
- Transform3D.cs
- EpmContentSerializerBase.cs
- ByteAnimationBase.cs
- Adorner.cs
- NavigatorOutput.cs
- SafeCryptoHandles.cs
- AccessKeyManager.cs
- GetLedgerEntryForRecipientRequest.cs
- Menu.cs
- DataObjectAttribute.cs
- XmlArrayAttribute.cs
- XmlTypeAttribute.cs
- MachineKeySection.cs
- RootNamespaceAttribute.cs
- AssociatedControlConverter.cs
- CompositeTypefaceMetrics.cs
- HttpDictionary.cs
- ScriptResourceHandler.cs
- StatusBar.cs
- SqlDataSourceTableQuery.cs
- DataSourceCache.cs
- ReflectionUtil.cs
- ContextMenuAutomationPeer.cs
- OleDbDataAdapter.cs
- XmlSchemaNotation.cs
- SortExpressionBuilder.cs
- TimeoutException.cs
- WorkerRequest.cs
- BrowserDefinition.cs
- BezierSegment.cs
- ConvertEvent.cs
- WebPartConnectionsEventArgs.cs
- AttachmentCollection.cs
- _IPv4Address.cs
- ColumnCollection.cs
- ProjectionCamera.cs
- LambdaCompiler.Lambda.cs
- MenuItemStyle.cs
- TraceHelpers.cs
- SystemIcons.cs
- coordinatorfactory.cs
- TypeDescriptor.cs
- WebServiceResponse.cs
- PolyLineSegment.cs
- CheckedPointers.cs
- BaseTemplateCodeDomTreeGenerator.cs
- KerberosSecurityTokenParameters.cs
- XmlIlTypeHelper.cs
- ParagraphResult.cs
- XPathCompileException.cs
- GradientStop.cs
- RemoteWebConfigurationHost.cs
- TimeSpanMinutesConverter.cs
- DirectoryInfo.cs
- ColorPalette.cs
- StringKeyFrameCollection.cs
- PackageFilter.cs
- UnaryNode.cs