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
- DynamicRouteExpression.cs
- DBNull.cs
- HashMembershipCondition.cs
- MessageHeaderAttribute.cs
- EntityConnection.cs
- PanningMessageFilter.cs
- MatrixAnimationUsingKeyFrames.cs
- WebPartDisplayModeEventArgs.cs
- Lasso.cs
- FormViewPageEventArgs.cs
- Storyboard.cs
- XmlUnspecifiedAttribute.cs
- odbcmetadatacollectionnames.cs
- EasingFunctionBase.cs
- CLRBindingWorker.cs
- FileDialogCustomPlacesCollection.cs
- OdbcConnection.cs
- PartialCachingAttribute.cs
- DataGridPagerStyle.cs
- HtmlControl.cs
- HostedImpersonationContext.cs
- Win32PrintDialog.cs
- Nullable.cs
- regiisutil.cs
- PageSetupDialog.cs
- RuleSetBrowserDialog.cs
- HiddenFieldDesigner.cs
- HttpRuntimeSection.cs
- SimpleHandlerFactory.cs
- Mutex.cs
- DebugTrace.cs
- UnsafeNativeMethods.cs
- D3DImage.cs
- CancellationTokenRegistration.cs
- XmlChildNodes.cs
- ReaderWriterLock.cs
- ReferenceConverter.cs
- CommonEndpointBehaviorElement.cs
- WindowsListViewSubItem.cs
- WebExceptionStatus.cs
- DbDeleteCommandTree.cs
- Model3D.cs
- ManualResetEvent.cs
- UseManagedPresentationElement.cs
- IApplicationTrustManager.cs
- FlowDocumentPageViewerAutomationPeer.cs
- IntegerValidator.cs
- BindingObserver.cs
- TextTreeNode.cs
- AllMembershipCondition.cs
- TypeSchema.cs
- ScriptManagerProxy.cs
- ObjRef.cs
- AttachedPropertyMethodSelector.cs
- GradientStopCollection.cs
- SwitchElementsCollection.cs
- TypeResolver.cs
- SiteMap.cs
- _KerberosClient.cs
- SchemaExporter.cs
- MimeMapping.cs
- PropertyCollection.cs
- DesignerSerializationVisibilityAttribute.cs
- SingleStorage.cs
- DesignBindingValueUIHandler.cs
- TextCompositionEventArgs.cs
- SafeProcessHandle.cs
- LinqDataSourceInsertEventArgs.cs
- AppearanceEditorPart.cs
- FlowDocumentView.cs
- ActivityCodeDomSerializationManager.cs
- Lease.cs
- PackageFilter.cs
- MatrixAnimationUsingPath.cs
- IisTraceWebEventProvider.cs
- QuaternionKeyFrameCollection.cs
- NativeWindow.cs
- WindowExtensionMethods.cs
- TypeUsageBuilder.cs
- HTTPRemotingHandler.cs
- MetadataProperty.cs
- MSAAEventDispatcher.cs
- Icon.cs
- TextRangeSerialization.cs
- RoutedUICommand.cs
- SortKey.cs
- TransformationRules.cs
- TimeSpanSecondsConverter.cs
- XmlWriterTraceListener.cs
- AppDomainShutdownMonitor.cs
- WindowsAuthenticationEventArgs.cs
- ClientSideQueueItem.cs
- storepermissionattribute.cs
- ProxyWebPartManager.cs
- ProfilePropertyMetadata.cs
- MenuBindingsEditor.cs
- ResourceProperty.cs
- PartitionerStatic.cs
- GenericQueueSurrogate.cs
- SystemGatewayIPAddressInformation.cs