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
- RotateTransform3D.cs
- HealthMonitoringSectionHelper.cs
- FormsAuthenticationUser.cs
- CallbackHandler.cs
- SchemaElementDecl.cs
- VSDExceptions.cs
- PlatformNotSupportedException.cs
- WsatRegistrationHeader.cs
- PackWebRequestFactory.cs
- ObjectListComponentEditor.cs
- Span.cs
- HttpDictionary.cs
- ProtocolElementCollection.cs
- AmbientLight.cs
- LinqDataSourceView.cs
- DefaultEvaluationContext.cs
- XmlObjectSerializerReadContextComplex.cs
- Thickness.cs
- _TimerThread.cs
- FileLevelControlBuilderAttribute.cs
- ProcessHostServerConfig.cs
- Run.cs
- ExpressionNode.cs
- TreeNodeMouseHoverEvent.cs
- SHA384CryptoServiceProvider.cs
- XamlNamespaceHelper.cs
- Tag.cs
- LineServices.cs
- DataKey.cs
- ResXResourceSet.cs
- DataContractSet.cs
- RegexGroup.cs
- XsltSettings.cs
- XmlLoader.cs
- ColumnHeaderConverter.cs
- Pkcs9Attribute.cs
- XPathQilFactory.cs
- ClientOperationFormatterProvider.cs
- GregorianCalendar.cs
- Function.cs
- DataGridCellItemAutomationPeer.cs
- ValidatingReaderNodeData.cs
- CodeExpressionCollection.cs
- SocketPermission.cs
- Size.cs
- XmlSignatureProperties.cs
- cookiecontainer.cs
- ManipulationDeltaEventArgs.cs
- RijndaelManagedTransform.cs
- TransformDescriptor.cs
- CharacterBufferReference.cs
- ModuleElement.cs
- NativeActivity.cs
- ValidatorCompatibilityHelper.cs
- AppDomainEvidenceFactory.cs
- FreezableCollection.cs
- RelatedEnd.cs
- WorkItem.cs
- TriggerCollection.cs
- ExceptionTrace.cs
- FormView.cs
- SQLBoolean.cs
- SQLByte.cs
- DynamicResourceExtension.cs
- ThreadStaticAttribute.cs
- BamlMapTable.cs
- SelfIssuedSamlTokenFactory.cs
- NullableDecimalSumAggregationOperator.cs
- XmlILOptimizerVisitor.cs
- FrameworkElementFactory.cs
- DataGridViewComboBoxCell.cs
- PeerMaintainer.cs
- ChtmlTextWriter.cs
- TdsValueSetter.cs
- PageAsyncTaskManager.cs
- BindingExpressionUncommonField.cs
- UTF8Encoding.cs
- AccessDataSourceView.cs
- Root.cs
- UpDownEvent.cs
- ConfigXmlText.cs
- PrimitiveType.cs
- SqlInfoMessageEvent.cs
- ConvertEvent.cs
- BoundConstants.cs
- FusionWrap.cs
- SQLMoney.cs
- _SingleItemRequestCache.cs
- ContentType.cs
- ParentQuery.cs
- DesignBindingPropertyDescriptor.cs
- OleDbCommand.cs
- HttpProfileGroupBase.cs
- CursorConverter.cs
- DataGridState.cs
- OleDbParameterCollection.cs
- BindingMemberInfo.cs
- ApplicationDirectoryMembershipCondition.cs
- _AutoWebProxyScriptEngine.cs
- WebPartCollection.cs