AddPIPoint.NameAndAttributesSets Property
- Last UpdatedDec 15, 2025
- 2 minute read
Name and attributes for each PI Point being added. The hashtable entry names are the PI Point name, and the hashtable value is another hashtable with all attribute names and values to use when creating the PI Point. Use Get-Help Add-PIPoint -Examples to see example usage.
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[ParameterAttribute(Position = 0, ParameterSetName = "MultiplePointsMultipleAttributes", Mandatory = false, HelpMessage = "Point Attributes")] public Hashtable NameAndAttributesSets { get; set; }
<ParameterAttribute(Position := 0, ParameterSetName := "MultiplePointsMultipleAttributes", Mandatory := false, HelpMessage := "Point Attributes")> Public Property NameAndAttributesSets As Hashtable Get Set Dim instance As AddPIPoint Dim value As Hashtable value = instance.NameAndAttributesSets instance.NameAndAttributesSets = value
public: [ParameterAttribute(Position = 0, ParameterSetName = L"MultiplePointsMultipleAttributes", Mandatory = false, HelpMessage = L"Point Attributes")] property Hashtable^ NameAndAttributesSets { Hashtable^ get (); void set (Hashtable^ value); }
[<ParameterAttribute(Position = 0, ParameterSetName = "MultiplePointsMultipleAttributes", Mandatory = false, HelpMessage = "Point Attributes")>] member NameAndAttributesSets : Hashtable with get, set