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
- ZipIOExtraFieldPaddingElement.cs
- UInt32Converter.cs
- securestring.cs
- HttpResponseInternalBase.cs
- ScrollProperties.cs
- DataGridColumn.cs
- TextTreeNode.cs
- XmlCharacterData.cs
- DesignTimeTemplateParser.cs
- TriggerAction.cs
- TimeStampChecker.cs
- QueryRewriter.cs
- GridSplitterAutomationPeer.cs
- SeparatorAutomationPeer.cs
- SqlUtils.cs
- ApplicationSecurityManager.cs
- DataGridViewTopLeftHeaderCell.cs
- DataRowCollection.cs
- ExtensibleClassFactory.cs
- DataTableReaderListener.cs
- _HelperAsyncResults.cs
- StringAnimationUsingKeyFrames.cs
- PasswordRecoveryDesigner.cs
- GlyphsSerializer.cs
- Pen.cs
- DesignerTransactionCloseEvent.cs
- Internal.cs
- SettingsPropertyWrongTypeException.cs
- Message.cs
- RegexCaptureCollection.cs
- BindingMAnagerBase.cs
- MimeMapping.cs
- UriTemplateLiteralPathSegment.cs
- Matrix3D.cs
- MaskedTextProvider.cs
- ThreadExceptionEvent.cs
- FileSystemEventArgs.cs
- SerialPort.cs
- DesignerEventService.cs
- basemetadatamappingvisitor.cs
- SynchronizationLockException.cs
- MetadataArtifactLoaderComposite.cs
- CommandDesigner.cs
- SelectionBorderGlyph.cs
- MetafileHeaderEmf.cs
- WebPartTracker.cs
- KnownTypes.cs
- XamlHostingSection.cs
- XamlFxTrace.cs
- Assembly.cs
- ValidationPropertyAttribute.cs
- FreeFormDragDropManager.cs
- Int32CollectionConverter.cs
- DataGridViewTextBoxEditingControl.cs
- Camera.cs
- webeventbuffer.cs
- LayoutManager.cs
- ProviderUtil.cs
- IsolatedStorageFileStream.cs
- DataPagerFieldCollection.cs
- CharStorage.cs
- ImageProxy.cs
- GlyphRunDrawing.cs
- EncodingNLS.cs
- LongValidator.cs
- DbConnectionPoolCounters.cs
- TrailingSpaceComparer.cs
- XmlEntity.cs
- ComboBox.cs
- ErasingStroke.cs
- StructuredTypeEmitter.cs
- EdmComplexPropertyAttribute.cs
- GridViewColumnHeaderAutomationPeer.cs
- DataGridViewImageCell.cs
- TransactedBatchingElement.cs
- xmlfixedPageInfo.cs
- DrawingAttributesDefaultValueFactory.cs
- WebDisplayNameAttribute.cs
- ChangeProcessor.cs
- JoinSymbol.cs
- OperationContext.cs
- CfgRule.cs
- CustomAttributeFormatException.cs
- OutOfMemoryException.cs
- JpegBitmapDecoder.cs
- CodeGenerator.cs
- CollectionViewGroup.cs
- updatecommandorderer.cs
- SharedStatics.cs
- _Rfc2616CacheValidators.cs
- ServicesExceptionNotHandledEventArgs.cs
- XmlValidatingReader.cs
- ConfigurationConverterBase.cs
- WebPartHelpVerb.cs
- FixedSOMImage.cs
- URLMembershipCondition.cs
- ObjectTag.cs
- InstanceData.cs
- RowBinding.cs
- Size3D.cs