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
- XmlArrayAttribute.cs
- WebPartConnectionCollection.cs
- SafeSystemMetrics.cs
- TextRunCache.cs
- DataGridPreparingCellForEditEventArgs.cs
- InternalsVisibleToAttribute.cs
- JoinSymbol.cs
- TrackingMemoryStreamFactory.cs
- ParamArrayAttribute.cs
- PointAnimation.cs
- HtmlInputSubmit.cs
- UpdatableGenericsFeature.cs
- HttpListenerPrefixCollection.cs
- PrintDialog.cs
- Rect3D.cs
- AdPostCacheSubstitution.cs
- ToolboxItemCollection.cs
- TimeSpanStorage.cs
- MemberMemberBinding.cs
- HtmlTitle.cs
- FragmentQueryProcessor.cs
- ZipIORawDataFileBlock.cs
- SharedUtils.cs
- HierarchicalDataSourceConverter.cs
- CryptoConfig.cs
- SamlDelegatingWriter.cs
- DocumentPage.cs
- CatalogPartChrome.cs
- EventHandlerList.cs
- DATA_BLOB.cs
- PageSetupDialog.cs
- FileClassifier.cs
- UxThemeWrapper.cs
- IntSecurity.cs
- GridView.cs
- CodeDOMUtility.cs
- CompoundFileReference.cs
- Pts.cs
- ReceiveCompletedEventArgs.cs
- EntityViewGenerator.cs
- EventLogPermission.cs
- DataPagerFieldCommandEventArgs.cs
- MetadataCache.cs
- ContextMenu.cs
- StreamUpdate.cs
- UInt16Converter.cs
- DescendentsWalker.cs
- OdbcRowUpdatingEvent.cs
- DataSourceXmlTextReader.cs
- CacheRequest.cs
- dataobject.cs
- StrokeNodeOperations.cs
- SqlCommand.cs
- FrameworkElement.cs
- CorrelationService.cs
- HtmlPanelAdapter.cs
- StrongTypingException.cs
- DataTableReaderListener.cs
- SqlDataSourceQueryEditorForm.cs
- HttpHeaderCollection.cs
- NameValueCollection.cs
- UniqueIdentifierService.cs
- PrintDocument.cs
- CompilationLock.cs
- DelegateBodyWriter.cs
- ToolStripControlHost.cs
- TextBoxBase.cs
- RestHandler.cs
- PropertyValue.cs
- DataServiceRequestArgs.cs
- WindowsComboBox.cs
- SchemaNames.cs
- SafeMILHandle.cs
- Rules.cs
- PersonalizableTypeEntry.cs
- OutOfProcStateClientManager.cs
- EntityDataSourceDataSelection.cs
- StrongTypingException.cs
- ObjectDataSourceMethodEventArgs.cs
- ADMembershipProvider.cs
- Inline.cs
- FixedMaxHeap.cs
- ServiceManager.cs
- ServerProtocol.cs
- HttpPostServerProtocol.cs
- BatchParser.cs
- CompiledRegexRunnerFactory.cs
- ApplicationCommands.cs
- OpenTypeMethods.cs
- BoundColumn.cs
- dbdatarecord.cs
- XmlSchemaRedefine.cs
- AmbiguousMatchException.cs
- DecodeHelper.cs
- IisTraceWebEventProvider.cs
- SingletonConnectionReader.cs
- SortedDictionary.cs
- XmlBoundElement.cs
- OleDbRowUpdatingEvent.cs
- DefaultPrintController.cs