Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Timers / System / Timers / ElapsedEventArgs.cs / 1305376 / ElapsedEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Timers { using System; using System.Diagnostics; public class ElapsedEventArgs : EventArgs { private DateTime signalTime; internal ElapsedEventArgs(int low, int high) { long fileTime = (long)((((ulong)high) << 32) | (((ulong)low) & 0xffffffff)); this.signalTime = DateTime.FromFileTime(fileTime); } public DateTime SignalTime { get { return this.signalTime; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Timers { using System; using System.Diagnostics; public class ElapsedEventArgs : EventArgs { private DateTime signalTime; internal ElapsedEventArgs(int low, int high) { long fileTime = (long)((((ulong)high) << 32) | (((ulong)low) & 0xffffffff)); this.signalTime = DateTime.FromFileTime(fileTime); } public DateTime SignalTime { get { return this.signalTime; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OrderPreservingMergeHelper.cs
- DbParameterHelper.cs
- StretchValidation.cs
- BaseValidator.cs
- ResponseBodyWriter.cs
- Transform.cs
- PickBranch.cs
- CryptoApi.cs
- IdentityNotMappedException.cs
- FixedTextPointer.cs
- AuthenticationModuleElementCollection.cs
- milexports.cs
- Label.cs
- SQLByte.cs
- Table.cs
- ComponentChangingEvent.cs
- ToolStripItem.cs
- FlatButtonAppearance.cs
- QueryConverter.cs
- ArgIterator.cs
- PropertyNames.cs
- ObjectItemAssemblyLoader.cs
- WorkflowDesigner.cs
- MethodBody.cs
- ICspAsymmetricAlgorithm.cs
- WizardForm.cs
- elementinformation.cs
- HtmlInputImage.cs
- GridItemProviderWrapper.cs
- UITypeEditor.cs
- SubclassTypeValidator.cs
- NativeMethods.cs
- EntityViewContainer.cs
- WindowsGrip.cs
- BufferModeSettings.cs
- ParagraphResult.cs
- Mappings.cs
- TabControl.cs
- OdbcConnectionHandle.cs
- TextEncodedRawTextWriter.cs
- SynchronizationContextHelper.cs
- RefExpr.cs
- MethodExpr.cs
- SoapExtensionReflector.cs
- HtmlInputCheckBox.cs
- TypeLoader.cs
- OpenTypeLayoutCache.cs
- Axis.cs
- DecimalConstantAttribute.cs
- HostExecutionContextManager.cs
- ClassHandlersStore.cs
- ActivityMarkupSerializationProvider.cs
- ResizeGrip.cs
- SapiRecoContext.cs
- SamlEvidence.cs
- BuildProviderAppliesToAttribute.cs
- OptimalBreakSession.cs
- HtmlInputPassword.cs
- DependencyProperty.cs
- RuleElement.cs
- TextCompositionManager.cs
- NotConverter.cs
- WorkerRequest.cs
- HighContrastHelper.cs
- MaskDescriptors.cs
- PrintPreviewGraphics.cs
- RegexStringValidator.cs
- SafePointer.cs
- Calendar.cs
- ScrollBar.cs
- FileDialog_Vista_Interop.cs
- UrlPath.cs
- TextRangeProviderWrapper.cs
- WebPartEditorOkVerb.cs
- PointHitTestResult.cs
- NativeMethods.cs
- GeneralTransform2DTo3DTo2D.cs
- DocumentPageView.cs
- XmlSchemaElement.cs
- IISUnsafeMethods.cs
- LabelDesigner.cs
- SmiSettersStream.cs
- CodePageUtils.cs
- XmlWrappingReader.cs
- DataGridViewComboBoxColumn.cs
- BooleanAnimationBase.cs
- ProxyManager.cs
- RecognizedPhrase.cs
- ScriptResourceAttribute.cs
- AutomationIdentifierGuids.cs
- DataBindingCollection.cs
- SqlCacheDependencyDatabase.cs
- Trigger.cs
- HtmlButton.cs
- ProviderCollection.cs
- HtmlTextArea.cs
- coordinator.cs
- TaskExtensions.cs
- IfJoinedCondition.cs
- UInt16.cs