Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / ComponentModel / DefaultEventAttribute.cs / 1 / DefaultEventAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class)] public sealed class DefaultEventAttribute : Attribute { ///Specifies the default event for a /// component. ////// This is the default event name. /// private readonly string name; ////// public DefaultEventAttribute(string name) { this.name = name; } ////// Initializes /// a new instance of the ///class. /// /// public string Name { get { return name; } } ////// Gets the name of the default event for /// the component this attribute is bound to. /// ////// public static readonly DefaultEventAttribute Default = new DefaultEventAttribute(null); public override bool Equals(object obj) { DefaultEventAttribute other = obj as DefaultEventAttribute; return (other != null) && other.Name == name; } public override int GetHashCode() { return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Specifies the default value for the ///, which is /// . /// This field is read-only. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class)] public sealed class DefaultEventAttribute : Attribute { ///Specifies the default event for a /// component. ////// This is the default event name. /// private readonly string name; ////// public DefaultEventAttribute(string name) { this.name = name; } ////// Initializes /// a new instance of the ///class. /// /// public string Name { get { return name; } } ////// Gets the name of the default event for /// the component this attribute is bound to. /// ////// public static readonly DefaultEventAttribute Default = new DefaultEventAttribute(null); public override bool Equals(object obj) { DefaultEventAttribute other = obj as DefaultEventAttribute; return (other != null) && other.Name == name; } public override int GetHashCode() { return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Specifies the default value for the ///, which is /// . /// This field is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AddingNewEventArgs.cs
- BCLDebug.cs
- AggregateNode.cs
- Journaling.cs
- CircleHotSpot.cs
- _FtpDataStream.cs
- MdImport.cs
- StreamingContext.cs
- ScopeCompiler.cs
- CharAnimationBase.cs
- SecurityElement.cs
- FieldInfo.cs
- UnsafeNativeMethods.cs
- WebConfigurationManager.cs
- Window.cs
- AnnotationHighlightLayer.cs
- VectorConverter.cs
- PrintPageEvent.cs
- TraceContext.cs
- Timeline.cs
- PageAsyncTaskManager.cs
- TimeoutValidationAttribute.cs
- TextDecorationUnitValidation.cs
- DesignerForm.cs
- VariableQuery.cs
- Size3DConverter.cs
- GridToolTip.cs
- DiscoveryClientProtocol.cs
- SyndicationElementExtension.cs
- NominalTypeEliminator.cs
- AccessText.cs
- RowCache.cs
- LambdaCompiler.Address.cs
- TargetFrameworkAttribute.cs
- XmlExpressionDumper.cs
- CollectionBase.cs
- WebReferencesBuildProvider.cs
- LogicalExpr.cs
- HTTPAPI_VERSION.cs
- SamlDelegatingWriter.cs
- TemplateParser.cs
- InvalidPrinterException.cs
- DbFunctionCommandTree.cs
- XmlBindingWorker.cs
- XmlHierarchicalDataSourceView.cs
- CodeDelegateCreateExpression.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- Registry.cs
- ButtonBase.cs
- PhonemeEventArgs.cs
- EventInfo.cs
- WebUtil.cs
- CollectionChangeEventArgs.cs
- ToolStripRenderEventArgs.cs
- ArrangedElementCollection.cs
- LoginViewDesigner.cs
- ConfigurationFileMap.cs
- CoTaskMemUnicodeSafeHandle.cs
- AssertFilter.cs
- BindingGroup.cs
- FilterableAttribute.cs
- rsa.cs
- MarshalDirectiveException.cs
- RouteCollection.cs
- VirtualizedItemProviderWrapper.cs
- CharStorage.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- ChangeConflicts.cs
- LineMetrics.cs
- WebConfigurationFileMap.cs
- ResolveCriteriaApril2005.cs
- CompilationSection.cs
- WorkflowViewElement.cs
- RoleManagerEventArgs.cs
- Rotation3DKeyFrameCollection.cs
- TabControl.cs
- DependencyPropertyDescriptor.cs
- XmlTypeAttribute.cs
- MemoryFailPoint.cs
- PathFigure.cs
- Base64Encoding.cs
- SpeechAudioFormatInfo.cs
- GrammarBuilderPhrase.cs
- UInt32.cs
- HTMLTextWriter.cs
- Track.cs
- DesignUtil.cs
- MemberMaps.cs
- Stopwatch.cs
- IdnMapping.cs
- XmlSchemaIdentityConstraint.cs
- TypedReference.cs
- FileIOPermission.cs
- TransformedBitmap.cs
- AuthenticationSchemesHelper.cs
- ObjectViewQueryResultData.cs
- UnauthorizedWebPart.cs
- EventLogEntryCollection.cs
- ComMethodElement.cs
- ReadWriteObjectLock.cs