GetPIConnectionStatistics.Name Property
- Last UpdatedDec 15, 2025
- 2 minute read
Name of the connection information to get. Typically, this is the program name. EX: "powershell.exe(8644):remote"
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[ParameterAttribute(Position = 0, Mandatory = false, HelpMessage = "Program name")] [ValidateNotNullOrEmptyAttribute] public string Name { get; set; }
<ParameterAttribute(Position := 0, Mandatory := false, HelpMessage := "Program name")> <ValidateNotNullOrEmptyAttribute> Public Property Name As String Get Set Dim instance As GetPIConnectionStatistics Dim value As String value = instance.Name instance.Name = value
public: [ParameterAttribute(Position = 0, Mandatory = false, HelpMessage = L"Program name")] [ValidateNotNullOrEmptyAttribute] property String^ Name { String^ get (); void set (String^ value); }
[<ParameterAttribute(Position = 0, Mandatory = false, HelpMessage = "Program name")>] [<ValidateNotNullOrEmptyAttribute>] member Name : string with get, set