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
- SafeFileMappingHandle.cs
- BulletedList.cs
- EpmSourceTree.cs
- CodeSnippetStatement.cs
- DetailsViewRow.cs
- Stack.cs
- DataBoundControlHelper.cs
- FlowDocumentPage.cs
- RequestResizeEvent.cs
- DbParameterCollection.cs
- VisualStyleElement.cs
- QueueNameHelper.cs
- DataGridBeginningEditEventArgs.cs
- RegexMatchCollection.cs
- LeaseManager.cs
- XamlSerializerUtil.cs
- AsymmetricKeyExchangeFormatter.cs
- MSG.cs
- CSharpCodeProvider.cs
- DesignRelationCollection.cs
- AnonymousIdentificationSection.cs
- AnnotationService.cs
- DesignerDataColumn.cs
- ApplySecurityAndSendAsyncResult.cs
- Evidence.cs
- BamlTreeMap.cs
- ActivityDesignerLayoutSerializers.cs
- HttpPostedFile.cs
- IndexedSelectQueryOperator.cs
- OleDbFactory.cs
- QueueProcessor.cs
- SerTrace.cs
- ColorAnimation.cs
- TextEditorSpelling.cs
- ContextMenu.cs
- LabelExpression.cs
- DispatcherProcessingDisabled.cs
- FontInfo.cs
- GraphicsContainer.cs
- LinkedList.cs
- RawStylusInputCustomDataList.cs
- IISMapPath.cs
- SignatureToken.cs
- DataShape.cs
- DataStorage.cs
- FocusWithinProperty.cs
- XmlNullResolver.cs
- ScrollBar.cs
- Grant.cs
- InternalControlCollection.cs
- DataTableTypeConverter.cs
- DateTimeConstantAttribute.cs
- SqlBinder.cs
- _DisconnectOverlappedAsyncResult.cs
- CodeTypeDeclarationCollection.cs
- ClientFormsAuthenticationCredentials.cs
- SerializerDescriptor.cs
- ConfigurationElementCollection.cs
- ContentValidator.cs
- SqlCommandSet.cs
- EntityStoreSchemaGenerator.cs
- ClientUtils.cs
- EntityDataSourceSelectingEventArgs.cs
- GACIdentityPermission.cs
- CqlGenerator.cs
- AutoScrollHelper.cs
- TabControl.cs
- CryptoKeySecurity.cs
- KeyNotFoundException.cs
- StringDictionary.cs
- Control.cs
- Size.cs
- ListViewTableCell.cs
- DoubleLink.cs
- EntityContainerEmitter.cs
- WebPartManagerInternals.cs
- Sql8ExpressionRewriter.cs
- TemplateXamlTreeBuilder.cs
- CodeTypeReference.cs
- CodeMemberMethod.cs
- ObjectPropertyMapping.cs
- RightsManagementErrorHandler.cs
- ServiceOperationParameter.cs
- LocalValueEnumerator.cs
- WebScriptMetadataInstanceContextProvider.cs
- LinqDataSourceSelectEventArgs.cs
- UIElement.cs
- ResourceProviderFactory.cs
- TransformGroup.cs
- WorkflowPersistenceService.cs
- TypeConverter.cs
- DbExpressionVisitor.cs
- MissingMethodException.cs
- ListParaClient.cs
- WMICapabilities.cs
- ListComponentEditorPage.cs
- ProfileGroupSettingsCollection.cs
- AnnotationAdorner.cs
- ByteViewer.cs
- MasterPageCodeDomTreeGenerator.cs