Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

49 lines
1.3 KiB
C#

//------------------------------------------------------------------------------
// <copyright file="counter.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.Util {
using System;
using System.Web;
using System.Runtime.InteropServices;
/// <devdoc>
/// <para>Provides access to system timers.</para>
/// </devdoc>
internal sealed class Counter {
/// <devdoc>
/// not creatable
/// </devdoc>
private Counter() {
}
/// <devdoc>
/// Gets the current system counter value.
/// </devdoc>
internal static long Value {
get {
long count = 0;
SafeNativeMethods.QueryPerformanceCounter(ref count);
return count;
}
}
/// <devdoc>
/// Gets the frequency of the system counter in counts per second.
/// </devdoc>
internal static long Frequency {
get {
long freq = 0;
SafeNativeMethods.QueryPerformanceFrequency(ref freq);
return freq;
}
}
}
}