AddPIDataArchiveConnectionConfiguration.OpenTimeout Property
- Last UpdatedDec 15, 2025
- 2 minute read
Timeout for opening and establishing a connection to the PI Data Archive. Should be set with syntax "hh:mm:ss"
If not specified, the default global value from the PISDK configuration is used. (Typically 10 seconds)
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[ParameterAttribute(Position = 2, Mandatory = false, HelpMessage = "Open timeout")] [ValidateNotNullOrEmptyAttribute] public TimeSpan OpenTimeout { get; set; }
<ParameterAttribute(Position := 2, Mandatory := false, HelpMessage := "Open timeout")> <ValidateNotNullOrEmptyAttribute> Public Property OpenTimeout As TimeSpan Get Set Dim instance As AddPIDataArchiveConnectionConfiguration Dim value As TimeSpan value = instance.OpenTimeout instance.OpenTimeout = value
public: [ParameterAttribute(Position = 2, Mandatory = false, HelpMessage = L"Open timeout")] [ValidateNotNullOrEmptyAttribute] property TimeSpan OpenTimeout { TimeSpan get (); void set (TimeSpan value); }
[<ParameterAttribute(Position = 2, Mandatory = false, HelpMessage = "Open timeout")>] [<ValidateNotNullOrEmptyAttribute>] member OpenTimeout : TimeSpan with get, set