OPC Studio User's Guide and Reference
ServerStatusCheckPeriod Property (EasyClientParameters)



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.Engine Namespace > EasyClientParameters Class : ServerStatusCheckPeriod Property
Server status check period. Number of milliseconds. Determines how often the system periodically checks the status of the OPC server (by calling IOPCServer::GetStatus method).
Syntax
'Declaration
 
<DataMemberAttribute()>
Public Property ServerStatusCheckPeriod As Integer
'Usage
 
Dim instance As EasyClientParameters
Dim value As Integer
 
instance.ServerStatusCheckPeriod = value
 
value = instance.ServerStatusCheckPeriod
[DataMember()]
public int ServerStatusCheckPeriod {get; set;}
[DataMember()]
public:
property int ServerStatusCheckPeriod {
   int get();
   void set (    int value);
}

Property Value

The default value of this property is 15000.

Exceptions
ExceptionDescription

One of the arguments provided to a method is not valid.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

Remarks

The value must be greater than zero, or it must be equal to System.Threading.Timeout.Infinite.

This parameter has effect in both OPC Classic and OPC XML-DA.

This property is used by following client implementations:

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also