File size: 1,231 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Diagnostics;
namespace Microsoft.PowerShell.Commands.GetCounter
{
public class CounterFileInfo
{
internal CounterFileInfo(DateTime oldestRecord,
DateTime newestRecord,
UInt32 sampleCount)
{
_oldestRecord = oldestRecord;
_newestRecord = newestRecord;
_sampleCount = sampleCount;
}
internal CounterFileInfo() { }
public DateTime OldestRecord
{
get
{
return _oldestRecord;
}
}
private DateTime _oldestRecord = DateTime.MinValue;
public DateTime NewestRecord
{
get
{
return _newestRecord;
}
}
private DateTime _newestRecord = DateTime.MaxValue;
public UInt32 SampleCount
{
get
{
return _sampleCount;
}
}
private UInt32 _sampleCount = 0;
}
}
|