Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / EditorBrowsableAttribute.cs / 1 / EditorBrowsableAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Delegate | AttributeTargets.Interface)] public sealed class EditorBrowsableAttribute :Attribute { private EditorBrowsableState browsableState; ///[To be supplied.] ////// public EditorBrowsableAttribute (EditorBrowsableState state) { browsableState = state; } ///[To be supplied.] ////// public EditorBrowsableAttribute () :this (EditorBrowsableState.Always) {} ///[To be supplied.] ////// public EditorBrowsableState State { get { return browsableState;} } public override bool Equals(object obj) { if (obj == this) { return true; } EditorBrowsableAttribute other = obj as EditorBrowsableAttribute; return (other != null) && other.browsableState == browsableState; } public override int GetHashCode() { return base.GetHashCode(); } } ///[To be supplied.] ////// public enum EditorBrowsableState { ///[To be supplied.] ////// Always, ///[To be supplied.] ////// Never, ///[To be supplied.] ////// Advanced } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HostingEnvironment.cs
- ApplicationId.cs
- SelectionService.cs
- FtpRequestCacheValidator.cs
- TagNameToTypeMapper.cs
- PersistNameAttribute.cs
- ListViewDeleteEventArgs.cs
- PageTheme.cs
- ResourcesChangeInfo.cs
- URLString.cs
- WindowsUserNameCachingSecurityTokenAuthenticator.cs
- CursorConverter.cs
- DesignerEditorPartChrome.cs
- ExpandCollapsePattern.cs
- ReaderOutput.cs
- Timer.cs
- WebReferencesBuildProvider.cs
- EventOpcode.cs
- SocketPermission.cs
- OdbcConnectionFactory.cs
- XmlObjectSerializerReadContextComplexJson.cs
- AliasGenerator.cs
- ProfileGroupSettingsCollection.cs
- SequentialWorkflowHeaderFooter.cs
- ModelFactory.cs
- X509SubjectKeyIdentifierClause.cs
- ImpersonationContext.cs
- BigInt.cs
- PrimitiveType.cs
- ToolStripTextBox.cs
- PlatformCulture.cs
- MdImport.cs
- TranslateTransform.cs
- ClientTargetCollection.cs
- EmptyEnumerable.cs
- TypeUtils.cs
- XmlAnyAttributeAttribute.cs
- DesignerLinkAdapter.cs
- Grid.cs
- PathSegment.cs
- StringStorage.cs
- IPEndPointCollection.cs
- TrustLevel.cs
- ComPlusServiceLoader.cs
- DesignerLoader.cs
- OleDbPermission.cs
- TransformGroup.cs
- SystemIPGlobalProperties.cs
- Enum.cs
- TextUtf8RawTextWriter.cs
- RelationshipConverter.cs
- NullableFloatSumAggregationOperator.cs
- ValidationUtility.cs
- EdmMember.cs
- Rijndael.cs
- PageCodeDomTreeGenerator.cs
- NumericUpDownAccelerationCollection.cs
- SpecularMaterial.cs
- XamlDesignerSerializationManager.cs
- httpserverutility.cs
- DiscreteKeyFrames.cs
- State.cs
- RegisteredHiddenField.cs
- Gdiplus.cs
- Line.cs
- ResourceSetExpression.cs
- GridErrorDlg.cs
- Literal.cs
- ControlUtil.cs
- BoundsDrawingContextWalker.cs
- TableCellAutomationPeer.cs
- EmbeddedMailObject.cs
- ByteStorage.cs
- EmptyReadOnlyDictionaryInternal.cs
- ResourceDescriptionAttribute.cs
- SerializerProvider.cs
- DependencyPropertyHelper.cs
- Base64Encoder.cs
- StorageInfo.cs
- KnownColorTable.cs
- HtmlFormWrapper.cs
- FullTextState.cs
- ToolStripMenuItem.cs
- DrawingContextWalker.cs
- DocComment.cs
- WebServicesDescriptionAttribute.cs
- EntityViewGenerationAttribute.cs
- PostBackOptions.cs
- PropertyChangedEventManager.cs
- XPathBinder.cs
- MatrixAnimationBase.cs
- HttpContext.cs
- OutputWindow.cs
- TextBox.cs
- LogRecordSequence.cs
- RouteData.cs
- TemplateEditingVerb.cs
- Formatter.cs
- ClientSession.cs
- DecoderReplacementFallback.cs