GetPIBufferSession.PhysicalServerName Property
- Last UpdatedDec 15, 2025
- 2 minute read
Physical server name. This is the member node name for PI Collectives, or the server name for standalone PI Data Archive servers. If not specified for a PI Collective, all member sessions will be included. This parameter is not required for a standalone PI Data Archive server.
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[ParameterAttribute(Position = 1, ParameterSetName = "LogicalPhysical", Mandatory = true, HelpMessage = "Physical server name")] [AliasAttribute(new string[] { ... })] [ValidateNotNullOrEmptyAttribute] public string PhysicalServerName { get; set; }
<ParameterAttribute(Position := 1, ParameterSetName := "LogicalPhysical", Mandatory := true, HelpMessage := "Physical server name")> <AliasAttribute(New String() { ... })> <ValidateNotNullOrEmptyAttribute> Public Property PhysicalServerName As String Get Set Dim instance As GetPIBufferSession Dim value As String value = instance.PhysicalServerName instance.PhysicalServerName = value
public: [ParameterAttribute(Position = 1, ParameterSetName = L"LogicalPhysical", Mandatory = true, HelpMessage = L"Physical server name")] [AliasAttribute(__gc new array<String^>^ { ... })] [ValidateNotNullOrEmptyAttribute] property String^ PhysicalServerName { String^ get (); void set (String^ value); }
[<ParameterAttribute(Position = 1, ParameterSetName = "LogicalPhysical", Mandatory = true, HelpMessage = "Physical server name")>] [<AliasAttribute(new string[] { ... })>] [<ValidateNotNullOrEmptyAttribute>] member PhysicalServerName : string with get, set