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
- SubqueryRules.cs
- Graph.cs
- FontStretches.cs
- HttpListenerRequestUriBuilder.cs
- UserMapPath.cs
- ProjectionPathSegment.cs
- TransactionFormatter.cs
- WebPartActionVerb.cs
- clipboard.cs
- OneOf.cs
- EndpointBehaviorElementCollection.cs
- BuildDependencySet.cs
- Descriptor.cs
- OverflowException.cs
- ActivityBuilderHelper.cs
- ServiceCredentialsSecurityTokenManager.cs
- ScopedMessagePartSpecification.cs
- FullTextBreakpoint.cs
- RMEnrollmentPage3.cs
- SelectionItemPattern.cs
- TextBoxLine.cs
- SectionUpdates.cs
- ProgressChangedEventArgs.cs
- XmlComment.cs
- WpfGeneratedKnownTypes.cs
- XPathDocumentNavigator.cs
- Operand.cs
- InstrumentationTracker.cs
- DrawingCollection.cs
- EntityClassGenerator.cs
- MarkupExtensionSerializer.cs
- Parameter.cs
- SerializableAttribute.cs
- DataGridView.cs
- TextEditorCopyPaste.cs
- OleDbException.cs
- PointHitTestResult.cs
- IdentityHolder.cs
- Assert.cs
- InteropBitmapSource.cs
- ChangeInterceptorAttribute.cs
- SizeConverter.cs
- XmlCompatibilityReader.cs
- GeneratedCodeAttribute.cs
- AgileSafeNativeMemoryHandle.cs
- OpenTypeCommon.cs
- URLIdentityPermission.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- X509ChainElement.cs
- ZeroOpNode.cs
- Rfc2898DeriveBytes.cs
- ImageAutomationPeer.cs
- ValuePatternIdentifiers.cs
- WorkerRequest.cs
- ReadOnlyDictionary.cs
- Stream.cs
- DrawingImage.cs
- BindingExpressionBase.cs
- ManagedFilter.cs
- Selection.cs
- TextBox.cs
- ProxyWebPartManager.cs
- _SslSessionsCache.cs
- VectorConverter.cs
- DbConnectionFactory.cs
- RestHandlerFactory.cs
- backend.cs
- StylusEditingBehavior.cs
- wmiprovider.cs
- EventLogHandle.cs
- TripleDESCryptoServiceProvider.cs
- EmissiveMaterial.cs
- ByteStreamBufferedMessageData.cs
- NameValueFileSectionHandler.cs
- XmlDictionaryReader.cs
- RenderDataDrawingContext.cs
- DataGridTextBoxColumn.cs
- CodeBlockBuilder.cs
- UrlUtility.cs
- MessagePropertyVariants.cs
- nulltextnavigator.cs
- HostedBindingBehavior.cs
- GcSettings.cs
- ServiceReference.cs
- HighlightVisual.cs
- xsdvalidator.cs
- MatcherBuilder.cs
- MemberAssignmentAnalysis.cs
- AccessibleObject.cs
- KeyedCollection.cs
- AxHost.cs
- XmlCharCheckingWriter.cs
- FusionWrap.cs
- ByteStack.cs
- SafeSecurityHandles.cs
- AssemblyBuilderData.cs
- ArithmeticLiteral.cs
- ChannelSinkStacks.cs
- ToolStripDropDownItem.cs
- ProfileEventArgs.cs