Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / RefreshEventArgs.cs / 1305376 / RefreshEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.Diagnostics; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class RefreshEventArgs : EventArgs { private object componentChanged; private Type typeChanged; ////// Provides data for the ///event. /// /// public RefreshEventArgs(object componentChanged) { this.componentChanged = componentChanged; this.typeChanged = componentChanged.GetType(); } ////// Initializes a new instance of the ///class with /// the component that has /// changed. /// /// public RefreshEventArgs(Type typeChanged) { this.typeChanged = typeChanged; } ////// Initializes a new instance of the ///class with /// the type /// of component that has changed. /// /// public object ComponentChanged { get { return componentChanged; } } ////// Gets the component that has changed /// its properties, events, or /// extenders. /// ////// public Type TypeChanged { get { return typeChanged; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets the type that has changed its properties, or events. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- IconEditor.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- SynchronizedKeyedCollection.cs
- Utils.cs
- ZipPackagePart.cs
- InvokeProviderWrapper.cs
- TrustManager.cs
- KnownColorTable.cs
- ListViewUpdateEventArgs.cs
- HttpListenerResponse.cs
- QilPatternFactory.cs
- ControlBindingsCollection.cs
- XmlElement.cs
- DataControlFieldHeaderCell.cs
- BasicSecurityProfileVersion.cs
- RichTextBoxConstants.cs
- SRef.cs
- UnsafeNativeMethods.cs
- IntersectQueryOperator.cs
- AutoScrollExpandMessageFilter.cs
- FullTrustAssemblyCollection.cs
- Crc32.cs
- WeakRefEnumerator.cs
- SqlDataReaderSmi.cs
- TimeEnumHelper.cs
- DataGridViewRowHeaderCell.cs
- CodeBlockBuilder.cs
- XmlParserContext.cs
- DataSpaceManager.cs
- ListDictionaryInternal.cs
- SQLCharsStorage.cs
- ListArgumentProvider.cs
- BufferAllocator.cs
- PropertyGridView.cs
- RequiredFieldValidator.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- WebPartConnectionsConfigureVerb.cs
- RSACryptoServiceProvider.cs
- CompiledRegexRunner.cs
- WinCategoryAttribute.cs
- PropertyItem.cs
- TableFieldsEditor.cs
- LocalizationParserHooks.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- GridItemProviderWrapper.cs
- AttachedAnnotationChangedEventArgs.cs
- AnnouncementInnerClientCD1.cs
- DockAndAnchorLayout.cs
- WmlLabelAdapter.cs
- XmlQuerySequence.cs
- ExtensionDataObject.cs
- TextBlock.cs
- ServiceNotStartedException.cs
- UnsafeNativeMethods.cs
- loginstatus.cs
- TargetControlTypeCache.cs
- SystemFonts.cs
- CodeTypeParameter.cs
- MimeMultiPart.cs
- DataGridViewRow.cs
- FontFamilyConverter.cs
- OfTypeExpression.cs
- LocalBuilder.cs
- WebPartMovingEventArgs.cs
- ResolveNameEventArgs.cs
- GeometryCollection.cs
- TraceContext.cs
- DateTimeOffset.cs
- DesignerObject.cs
- ComponentRenameEvent.cs
- TypeDelegator.cs
- PairComparer.cs
- RawStylusInputCustomDataList.cs
- Vector3DCollectionValueSerializer.cs
- StreamGeometryContext.cs
- WrappingXamlSchemaContext.cs
- WebPartDeleteVerb.cs
- TransactionFilter.cs
- RandomNumberGenerator.cs
- IriParsingElement.cs
- SqlCommandSet.cs
- Header.cs
- PageClientProxyGenerator.cs
- XsdValidatingReader.cs
- NavigationWindow.cs
- Transactions.cs
- ImmutableObjectAttribute.cs
- XmlName.cs
- HwndSourceKeyboardInputSite.cs
- ObsoleteAttribute.cs
- InvokeHandlers.cs
- CodeNamespaceImport.cs
- VectorAnimation.cs
- RuntimeHelpers.cs
- Single.cs
- SignedInfo.cs
- Int64AnimationUsingKeyFrames.cs
- ExtendedProperty.cs
- ServiceThrottlingElement.cs
- SecurityUtils.cs