GetPIExpressionSummary.Intervals Property
- Last UpdatedDec 15, 2025
- 2 minute read
Number of evenly spaced intervals in each time range. This array has to be one element shorter than Times.
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[ParameterAttribute(Position = 1, ParameterSetName = "WithoutSampleTimes", Mandatory = true, HelpMessage = "Interval ranges of summaries")] [ParameterAttribute(Position = 1, ParameterSetName = "WithSampleTimes", Mandatory = true, HelpMessage = "Timestamp ranges of summaries")] [ValidateNotNullOrEmptyAttribute] public int[] Intervals { get; set; }
<ParameterAttribute(Position := 1, ParameterSetName := "WithoutSampleTimes", Mandatory := true, HelpMessage := "Interval ranges of summaries")> <ParameterAttribute(Position := 1, ParameterSetName := "WithSampleTimes", Mandatory := true, HelpMessage := "Timestamp ranges of summaries")> <ValidateNotNullOrEmptyAttribute> Public Property Intervals As Integer() Get Set Dim instance As GetPIExpressionSummary Dim value As Integer() value = instance.Intervals instance.Intervals = value
public: [ParameterAttribute(Position = 1, ParameterSetName = L"WithoutSampleTimes", Mandatory = true, HelpMessage = L"Interval ranges of summaries")] [ParameterAttribute(Position = 1, ParameterSetName = L"WithSampleTimes", Mandatory = true, HelpMessage = L"Timestamp ranges of summaries")] [ValidateNotNullOrEmptyAttribute] property array<int>^ Intervals { array<int>^ get (); void set (array<int>^ value); }
[<ParameterAttribute(Position = 1, ParameterSetName = "WithoutSampleTimes", Mandatory = true, HelpMessage = "Interval ranges of summaries")>] [<ParameterAttribute(Position = 1, ParameterSetName = "WithSampleTimes", Mandatory = true, HelpMessage = "Timestamp ranges of summaries")>] [<ValidateNotNullOrEmptyAttribute>] member Intervals : int[] with get, set