AddPIValue.IsQuestionable Property
- Last UpdatedDec 15, 2025
- 2 minute read
Specify if the value or values should have the Questionable bit set
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[ParameterAttribute(Position = 3, Mandatory = false, ParameterSetName = "PIPoint", HelpMessage = "Is value questionable")] [ParameterAttribute(Position = 3, Mandatory = false, ParameterSetName = "Stream", HelpMessage = "Is value questionable")] [ParameterAttribute(Position = 4, Mandatory = false, ParameterSetName = "PointName", HelpMessage = "Is value questionable")] [ParameterAttribute(Position = 4, Mandatory = false, ParameterSetName = "PointId", HelpMessage = "Is value questionable")] [ValidateNotNullOrEmptyAttribute] public bool[] IsQuestionable { get; set; }
<ParameterAttribute(Position := 3, Mandatory := false, ParameterSetName := "PIPoint", HelpMessage := "Is value questionable")> <ParameterAttribute(Position := 3, Mandatory := false, ParameterSetName := "Stream", HelpMessage := "Is value questionable")> <ParameterAttribute(Position := 4, Mandatory := false, ParameterSetName := "PointName", HelpMessage := "Is value questionable")> <ParameterAttribute(Position := 4, Mandatory := false, ParameterSetName := "PointId", HelpMessage := "Is value questionable")> <ValidateNotNullOrEmptyAttribute> Public Property IsQuestionable As Boolean() Get Set Dim instance As AddPIValue Dim value As Boolean() value = instance.IsQuestionable instance.IsQuestionable = value
public: [ParameterAttribute(Position = 3, Mandatory = false, ParameterSetName = L"PIPoint", HelpMessage = L"Is value questionable")] [ParameterAttribute(Position = 3, Mandatory = false, ParameterSetName = L"Stream", HelpMessage = L"Is value questionable")] [ParameterAttribute(Position = 4, Mandatory = false, ParameterSetName = L"PointName", HelpMessage = L"Is value questionable")] [ParameterAttribute(Position = 4, Mandatory = false, ParameterSetName = L"PointId", HelpMessage = L"Is value questionable")] [ValidateNotNullOrEmptyAttribute] property array<bool>^ IsQuestionable { array<bool>^ get (); void set (array<bool>^ value); }
[<ParameterAttribute(Position = 3, Mandatory = false, ParameterSetName = "PIPoint", HelpMessage = "Is value questionable")>] [<ParameterAttribute(Position = 3, Mandatory = false, ParameterSetName = "Stream", HelpMessage = "Is value questionable")>] [<ParameterAttribute(Position = 4, Mandatory = false, ParameterSetName = "PointName", HelpMessage = "Is value questionable")>] [<ParameterAttribute(Position = 4, Mandatory = false, ParameterSetName = "PointId", HelpMessage = "Is value questionable")>] [<ValidateNotNullOrEmptyAttribute>] member IsQuestionable : bool[] with get, set