OPC Studio User's Guide and Reference
FromInt32 Method (DAGroupParameters)



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.DataAccess Namespace > DAGroupParameters Class : FromInt32 Method
The requested update rate - how often should the updates be received (number of milliseconds).
Converts an integer value denoting the requested update rate (in milliseconds) to the group parameters object.
Syntax
'Declaration
 
<NotNullAttribute()>
Public Shared Function FromInt32( _
   ByVal requestedUpdateRate As Integer _
) As DAGroupParameters
'Usage
 
Dim requestedUpdateRate As Integer
Dim value As DAGroupParameters
 
value = DAGroupParameters.FromInt32(requestedUpdateRate)
[NotNull()]
public static DAGroupParameters FromInt32( 
   int requestedUpdateRate
)
[NotNull()]
public:
static DAGroupParameters^ FromInt32( 
   int requestedUpdateRate
) 

Parameters

requestedUpdateRate
The requested update rate - how often should the updates be received (number of milliseconds).

Return Value

The group parameters with the requested update rate.

This method never returns null (Nothing in Visual Basic).

Remarks

In languages that support implicit conversions (such as C# or VB.NET), in many cases you do not have call this method explicitly. When indicated, a call to an available equivalent implicit conversion operator will be created by the compiler automatically.

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