OPC Studio User's Guide and Reference
ToInt32 Method (DAQuality)



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.DataAccess Namespace > DAQuality Class : ToInt32 Method
A quality to be converted.

Because the DAQuality has an implicit conversion from System.Int32 and DAQualities, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use an integer (representing the internal value of the quality), or an element of the DAQualities enumeration in place of this parameter, and the corresponding OPC DA quality object will be constructed automatically. When the implicit conversion operators are not supported (such as with Python.NET), you can use the DAQuality Constructor(Int32) or DAQuality Constructor(DAQualities) constructor instead.

The value of this parameter can be null (Nothing in Visual Basic).

Converts the quality to an integer.
Syntax
'Declaration
 
Public Shared Function ToInt32( _
   ByVal quality As DAQuality _
) As Integer
'Usage
 
Dim quality As DAQuality
Dim value As Integer
 
value = DAQuality.ToInt32(quality)
public static int ToInt32( 
   DAQuality quality
)
public:
static int ToInt32( 
   DAQuality^ quality
) 

Parameters

quality
A quality to be converted.

Because the DAQuality has an implicit conversion from System.Int32 and DAQualities, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use an integer (representing the internal value of the quality), or an element of the DAQualities enumeration in place of this parameter, and the corresponding OPC DA quality object will be constructed automatically. When the implicit conversion operators are not supported (such as with Python.NET), you can use the DAQuality Constructor(Int32) or DAQuality Constructor(DAQualities) constructor instead.

The value of this parameter can be null (Nothing in Visual Basic).

Return Value

Returns a bit-coded integer that corresponds to the quality.
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.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

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