Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- PathData.cs
- DynamicMetaObject.cs
- DispatchChannelSink.cs
- FullTrustAssembliesSection.cs
- Validator.cs
- CharUnicodeInfo.cs
- ModuleBuilderData.cs
- UInt64Converter.cs
- CodeDomConfigurationHandler.cs
- DrawListViewColumnHeaderEventArgs.cs
- IndexingContentUnit.cs
- ExceptionUtil.cs
- XamlToRtfWriter.cs
- ContractCodeDomInfo.cs
- DesignerOptionService.cs
- ConstraintStruct.cs
- DropDownList.cs
- ImageAttributes.cs
- Byte.cs
- BufferAllocator.cs
- SubMenuStyle.cs
- UriTemplatePathSegment.cs
- ZipFileInfo.cs
- HttpListenerContext.cs
- RewritingProcessor.cs
- ReturnValue.cs
- MatrixCamera.cs
- HtmlInputPassword.cs
- ChangeInterceptorAttribute.cs
- isolationinterop.cs
- BooleanKeyFrameCollection.cs
- PageScaling.cs
- EntityDataSourceReferenceGroup.cs
- XmlSchemaSimpleTypeList.cs
- BitSet.cs
- HelpPage.cs
- SoapReflectionImporter.cs
- WriteTimeStream.cs
- SR.cs
- MethodExpression.cs
- ObjectCloneHelper.cs
- MaskedTextBox.cs
- EncryptedHeaderXml.cs
- NativeRecognizer.cs
- StreamGeometry.cs
- XmlObjectSerializerWriteContext.cs
- SafeNativeMethodsOther.cs
- ToolStripRenderEventArgs.cs
- ArrayHelper.cs
- SynchronizationContext.cs
- StackBuilderSink.cs
- PartialCachingAttribute.cs
- TextOnlyOutput.cs
- SqlFacetAttribute.cs
- RadioButtonStandardAdapter.cs
- SudsCommon.cs
- Roles.cs
- SizeConverter.cs
- JsonReader.cs
- EventWaitHandle.cs
- OperationInvokerBehavior.cs
- Icon.cs
- Roles.cs
- LexicalChunk.cs
- FrameworkTemplate.cs
- EventArgs.cs
- XsdValidatingReader.cs
- ObjectIDGenerator.cs
- DirectionalLight.cs
- FixedNode.cs
- InputScopeNameConverter.cs
- WebPartConnectionsCloseVerb.cs
- MarkupCompilePass2.cs
- AvtEvent.cs
- ObjectIDGenerator.cs
- PermissionListSet.cs
- TypeValidationEventArgs.cs
- RegexGroup.cs
- CqlWriter.cs
- HttpCachePolicyElement.cs
- DataGridViewUtilities.cs
- ControlPersister.cs
- ScriptReference.cs
- MailMessageEventArgs.cs
- StringAnimationUsingKeyFrames.cs
- MenuItemBindingCollection.cs
- SafeArrayRankMismatchException.cs
- FlagsAttribute.cs
- SHA1.cs
- InputBinder.cs
- OracleCommandSet.cs
- SamlSubject.cs
- CodeNamespaceCollection.cs
- DataServiceBehavior.cs
- ConfigXmlComment.cs
- DecimalKeyFrameCollection.cs
- ExceptionHandlersDesigner.cs
- UnsafeNativeMethods.cs
- WebConfigurationFileMap.cs
- PropertyDescriptorGridEntry.cs