Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / Design / ParenthesizePropertyNameAttribute.cs / 1 / ParenthesizePropertyNameAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public sealed class ParenthesizePropertyNameAttribute : Attribute { ///Provides a value indicating whether the name of the associated property is parenthesized in the /// properties window. ////// public static readonly ParenthesizePropertyNameAttribute Default = new ParenthesizePropertyNameAttribute(); private bool needParenthesis; ////// Sets the System.ComponentModel.Design.ParenthesizePropertyName /// attribute by default to /// ///. /// /// public ParenthesizePropertyNameAttribute() : this(false) { } ///[To be supplied.] ////// public ParenthesizePropertyNameAttribute(bool needParenthesis) { this.needParenthesis = needParenthesis; } ///Initializes a new instance of the System.ComponentModel.Design.ParenthesizePropertyNameAttribute /// class, using the specified value to indicate whether the attribute is /// marked for display with parentheses. ////// public bool NeedParenthesis { get { return needParenthesis; } } ////// Gets a value indicating /// whether the /// attribute is placed in parentheses when listed in /// the properties window. /// ////// public override bool Equals(object o) { if (o is ParenthesizePropertyNameAttribute) { return ((ParenthesizePropertyNameAttribute)o).NeedParenthesis == needParenthesis; } return false; } ///Compares the specified object /// to this object and tests for equality. ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// public override bool IsDefaultAttribute() { return this.Equals(Default); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets a value indicating whether this attribute is set to ///by default. // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public sealed class ParenthesizePropertyNameAttribute : Attribute { ///Provides a value indicating whether the name of the associated property is parenthesized in the /// properties window. ////// public static readonly ParenthesizePropertyNameAttribute Default = new ParenthesizePropertyNameAttribute(); private bool needParenthesis; ////// Sets the System.ComponentModel.Design.ParenthesizePropertyName /// attribute by default to /// ///. /// /// public ParenthesizePropertyNameAttribute() : this(false) { } ///[To be supplied.] ////// public ParenthesizePropertyNameAttribute(bool needParenthesis) { this.needParenthesis = needParenthesis; } ///Initializes a new instance of the System.ComponentModel.Design.ParenthesizePropertyNameAttribute /// class, using the specified value to indicate whether the attribute is /// marked for display with parentheses. ////// public bool NeedParenthesis { get { return needParenthesis; } } ////// Gets a value indicating /// whether the /// attribute is placed in parentheses when listed in /// the properties window. /// ////// public override bool Equals(object o) { if (o is ParenthesizePropertyNameAttribute) { return ((ParenthesizePropertyNameAttribute)o).NeedParenthesis == needParenthesis; } return false; } ///Compares the specified object /// to this object and tests for equality. ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// public override bool IsDefaultAttribute() { return this.Equals(Default); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets a value indicating whether this attribute is set to ///by default.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FlowDocumentView.cs
- SqlMethodCallConverter.cs
- CorrelationActionMessageFilter.cs
- Encoding.cs
- NavigationProgressEventArgs.cs
- LineInfo.cs
- RegexStringValidator.cs
- SettingsPropertyCollection.cs
- ComContractElementCollection.cs
- oledbmetadatacolumnnames.cs
- MarkupExtensionParser.cs
- XamlVector3DCollectionSerializer.cs
- EntryPointNotFoundException.cs
- assemblycache.cs
- CannotUnloadAppDomainException.cs
- dataSvcMapFileLoader.cs
- GridView.cs
- ObjectDataSourceWizardForm.cs
- TextEditorTyping.cs
- MailWebEventProvider.cs
- EntitySqlQueryCacheEntry.cs
- CatalogZone.cs
- ContractBase.cs
- HotSpotCollection.cs
- TokenBasedSet.cs
- TableLayoutSettingsTypeConverter.cs
- ImageConverter.cs
- CustomTypeDescriptor.cs
- BamlBinaryWriter.cs
- StylusPoint.cs
- PagePropertiesChangingEventArgs.cs
- UpdatePanelTriggerCollection.cs
- ServiceReference.cs
- TemplatedMailWebEventProvider.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- NodeInfo.cs
- HoistedLocals.cs
- HtmlInputButton.cs
- SctClaimDictionary.cs
- PropertyOverridesTypeEditor.cs
- FontStyle.cs
- DocumentViewerConstants.cs
- OdbcConnectionFactory.cs
- TreePrinter.cs
- NetNamedPipeBindingElement.cs
- FormattedText.cs
- SiteMapDataSource.cs
- HatchBrush.cs
- PathNode.cs
- AsyncOperationManager.cs
- TrustLevel.cs
- TextEditorSpelling.cs
- SID.cs
- OutputCacheSection.cs
- SoapFormatExtensions.cs
- ResourceExpressionBuilder.cs
- SafeNativeMethods.cs
- AttachedPropertyDescriptor.cs
- EntityException.cs
- ColorConverter.cs
- SqlTrackingService.cs
- SafeTimerHandle.cs
- SerializableTypeCodeDomSerializer.cs
- ScrollContentPresenter.cs
- StyleTypedPropertyAttribute.cs
- TextFormatterImp.cs
- WebPartExportVerb.cs
- ResourceSet.cs
- SqlCacheDependencyDatabaseCollection.cs
- PowerStatus.cs
- safelink.cs
- TemplateBindingExpressionConverter.cs
- DriveNotFoundException.cs
- wmiprovider.cs
- SqlCharStream.cs
- Int16Storage.cs
- AxDesigner.cs
- ProcessThreadCollection.cs
- ReadContentAsBinaryHelper.cs
- RtfNavigator.cs
- XmlSignificantWhitespace.cs
- RegisteredDisposeScript.cs
- CultureInfoConverter.cs
- TypeNameParser.cs
- XdrBuilder.cs
- PackageDigitalSignatureManager.cs
- LoginUtil.cs
- LoginCancelEventArgs.cs
- MetafileHeaderWmf.cs
- JavaScriptSerializer.cs
- SymmetricAlgorithm.cs
- JsonClassDataContract.cs
- StringStorage.cs
- DbParameterHelper.cs
- DbCommandTree.cs
- SmiConnection.cs
- AstTree.cs
- EmissiveMaterial.cs
- Win32Exception.cs
- String.cs