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
- XmlSchemaAppInfo.cs
- DiffuseMaterial.cs
- MessageDesigner.cs
- PageSettings.cs
- CheckableControlBaseAdapter.cs
- SharedPersonalizationStateInfo.cs
- SqlBuffer.cs
- DataSourceProvider.cs
- BaseParser.cs
- DebugView.cs
- SessionSymmetricTransportSecurityProtocolFactory.cs
- FocusChangedEventArgs.cs
- PrivacyNoticeBindingElement.cs
- SelectionRangeConverter.cs
- XmlChildEnumerator.cs
- SoapServerProtocol.cs
- SerializationInfo.cs
- DispatcherProcessingDisabled.cs
- GeneralTransform3DTo2DTo3D.cs
- HostedElements.cs
- BulletChrome.cs
- MultiSelectRootGridEntry.cs
- ListControlConvertEventArgs.cs
- ObjectStateFormatter.cs
- WebMessageEncodingElement.cs
- XmlSchemaSimpleType.cs
- XmlLanguageConverter.cs
- XmlSchemaSimpleContentRestriction.cs
- ElapsedEventArgs.cs
- InputGestureCollection.cs
- _IPv4Address.cs
- HierarchicalDataBoundControlAdapter.cs
- XmlSchemaInclude.cs
- ResXDataNode.cs
- DbDataRecord.cs
- OleDbSchemaGuid.cs
- ValidationEventArgs.cs
- FontFamilyConverter.cs
- TdsParameterSetter.cs
- Highlights.cs
- RawStylusInputReport.cs
- OperandQuery.cs
- NativeMethods.cs
- ImageListStreamer.cs
- DataGridViewCheckBoxCell.cs
- SafeRightsManagementHandle.cs
- BitmapEffectInputData.cs
- CustomExpression.cs
- X509SecurityTokenParameters.cs
- InternalMappingException.cs
- XmlDataCollection.cs
- DataShape.cs
- DES.cs
- BitmapPalettes.cs
- BindingElement.cs
- typedescriptorpermission.cs
- Style.cs
- PictureBoxDesigner.cs
- MetafileHeaderWmf.cs
- PageEventArgs.cs
- EncodingDataItem.cs
- TraceFilter.cs
- KnownIds.cs
- Attribute.cs
- Compensate.cs
- SelectionHighlightInfo.cs
- ZipIOLocalFileBlock.cs
- SocketInformation.cs
- BitmapEffect.cs
- ZipIOCentralDirectoryFileHeader.cs
- ScriptResourceHandler.cs
- LockRenewalTask.cs
- Baml2006KnownTypes.cs
- UnionCqlBlock.cs
- HttpsTransportBindingElement.cs
- UnknownWrapper.cs
- RealProxy.cs
- RawContentTypeMapper.cs
- Span.cs
- SizeAnimationBase.cs
- MenuCommand.cs
- RuntimeConfig.cs
- SortableBindingList.cs
- HttpVersion.cs
- FileDetails.cs
- __FastResourceComparer.cs
- SmiSettersStream.cs
- QueryOpeningEnumerator.cs
- DataTableNewRowEvent.cs
- Point4D.cs
- WebPartEditorCancelVerb.cs
- MenuItem.cs
- DbConnectionHelper.cs
- GraphicsPath.cs
- OnOperation.cs
- Dump.cs
- ResourceSetExpression.cs
- PointUtil.cs
- MetadataSource.cs
- XmlSerializationWriter.cs