GetPIPoint.AllAttributes Property
- Last UpdatedDec 15, 2025
- 2 minute read
Retrieve all PI Point attributes. If not specified then no attributes are retrieved.
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[ParameterAttribute(Position = 1, Mandatory = true, ParameterSetName = "ByIDAllAttributes", HelpMessage = "Retrieve all attributes")] [ParameterAttribute(Position = 1, Mandatory = false, ParameterSetName = "ByNameAllAttributes", HelpMessage = "Retrieve all attributes")] [ParameterAttribute(Position = 1, Mandatory = false, ParameterSetName = "ByWhereClauseAllAttributes", HelpMessage = "Retrieve all attributes")] [ValidateNotNullOrEmptyAttribute] public SwitchParameter AllAttributes { get; set; }
<ParameterAttribute(Position := 1, Mandatory := true, ParameterSetName := "ByIDAllAttributes", HelpMessage := "Retrieve all attributes")> <ParameterAttribute(Position := 1, Mandatory := false, ParameterSetName := "ByNameAllAttributes", HelpMessage := "Retrieve all attributes")> <ParameterAttribute(Position := 1, Mandatory := false, ParameterSetName := "ByWhereClauseAllAttributes", HelpMessage := "Retrieve all attributes")> <ValidateNotNullOrEmptyAttribute> Public Property AllAttributes As SwitchParameter Get Set Dim instance As GetPIPoint Dim value As SwitchParameter value = instance.AllAttributes instance.AllAttributes = value
public: [ParameterAttribute(Position = 1, Mandatory = true, ParameterSetName = L"ByIDAllAttributes", HelpMessage = L"Retrieve all attributes")] [ParameterAttribute(Position = 1, Mandatory = false, ParameterSetName = L"ByNameAllAttributes", HelpMessage = L"Retrieve all attributes")] [ParameterAttribute(Position = 1, Mandatory = false, ParameterSetName = L"ByWhereClauseAllAttributes", HelpMessage = L"Retrieve all attributes")] [ValidateNotNullOrEmptyAttribute] property SwitchParameter AllAttributes { SwitchParameter get (); void set (SwitchParameter value); }
[<ParameterAttribute(Position = 1, Mandatory = true, ParameterSetName = "ByIDAllAttributes", HelpMessage = "Retrieve all attributes")>] [<ParameterAttribute(Position = 1, Mandatory = false, ParameterSetName = "ByNameAllAttributes", HelpMessage = "Retrieve all attributes")>] [<ParameterAttribute(Position = 1, Mandatory = false, ParameterSetName = "ByWhereClauseAllAttributes", HelpMessage = "Retrieve all attributes")>] [<ValidateNotNullOrEmptyAttribute>] member AllAttributes : SwitchParameter with get, set