Code:
/ FX-1434 / FX-1434 / 1.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
- PresentationAppDomainManager.cs
- UserControlCodeDomTreeGenerator.cs
- __Error.cs
- MachineSettingsSection.cs
- UIElement3DAutomationPeer.cs
- ModulesEntry.cs
- DBSqlParser.cs
- XamlVector3DCollectionSerializer.cs
- SerializationHelper.cs
- RayHitTestParameters.cs
- KeyboardDevice.cs
- MemoryStream.cs
- ListControl.cs
- RecordConverter.cs
- BoundColumn.cs
- TextFindEngine.cs
- HttpFileCollection.cs
- TextTreeRootTextBlock.cs
- MbpInfo.cs
- Drawing.cs
- DefaultSettingsSection.cs
- KeyProperty.cs
- InfoCardProofToken.cs
- FacetValues.cs
- EntityRecordInfo.cs
- ServiceOperation.cs
- XmlAttributeCollection.cs
- TranslateTransform.cs
- BuildDependencySet.cs
- InvalidOleVariantTypeException.cs
- BookmarkScopeHandle.cs
- LayoutEngine.cs
- ItemChangedEventArgs.cs
- EdmRelationshipRoleAttribute.cs
- CmsInterop.cs
- PropertyBuilder.cs
- Positioning.cs
- COAUTHINFO.cs
- BatchParser.cs
- LZCodec.cs
- SectionRecord.cs
- DrawingGroup.cs
- BitmapInitialize.cs
- ChannelSettingsElement.cs
- OTFRasterizer.cs
- ProgressBarBrushConverter.cs
- HttpWrapper.cs
- ReadOnlyHierarchicalDataSourceView.cs
- TextServicesProperty.cs
- TrustManager.cs
- WebPartCloseVerb.cs
- DropDownList.cs
- BitmapCodecInfoInternal.cs
- TargetException.cs
- FixUp.cs
- HtmlEmptyTagControlBuilder.cs
- XPathEmptyIterator.cs
- WebResourceAttribute.cs
- RIPEMD160Managed.cs
- HttpCapabilitiesBase.cs
- MissingMethodException.cs
- DirtyTextRange.cs
- MetaModel.cs
- XmlDictionaryString.cs
- SectionXmlInfo.cs
- SerializationTrace.cs
- HierarchicalDataBoundControlAdapter.cs
- SocketInformation.cs
- BaseConfigurationRecord.cs
- CanonicalXml.cs
- SubstitutionResponseElement.cs
- BindingFormattingDialog.cs
- ImageBrush.cs
- PostBackOptions.cs
- PropertyRef.cs
- ClientSession.cs
- DataGridViewButtonColumn.cs
- _emptywebproxy.cs
- Vertex.cs
- IriParsingElement.cs
- SerialStream.cs
- IsolatedStorageException.cs
- TextTreeTextElementNode.cs
- XPathArrayIterator.cs
- LocalizeDesigner.cs
- ElementNotAvailableException.cs
- ParserExtension.cs
- BindStream.cs
- RectangleHotSpot.cs
- Header.cs
- SplineKeyFrames.cs
- BasicCellRelation.cs
- XdrBuilder.cs
- XmlUtil.cs
- AnimationLayer.cs
- FileVersionInfo.cs
- DataSourceSelectArguments.cs
- ToolStripPanelCell.cs
- Pair.cs
- TreeViewDesigner.cs