Connectivity Software User's Guide and Reference
CheckSuccess(OperationResult) Method



OpcLabs.EasyOpcUAPrimitives Assembly > OpcLabs.EasyOpc.UA.OperationModel Namespace > UAException Class > CheckSuccess Method : CheckSuccess(OperationResult) Method
The operation result to check. Must not be null.

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

Throws a UAException if the specified operation result contains an exception.
Syntax
'Declaration
 
Public Overloads Shared Sub CheckSuccess( _
   ByVal operationResult As OperationResult _
) 
'Usage
 
Dim operationResult As OperationResult
 
UAException.CheckSuccess(operationResult)
public static void CheckSuccess( 
   OperationResult operationResult
)
public:
static void CheckSuccess( 
   OperationResult^ operationResult
) 

Parameters

operationResult
The operation result to check. Must not be null.

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

Exceptions
ExceptionDescription

The OPC UA operation has failed. This operation exception in uniformly used to allow common handling of various kinds of errors. The System.Exception.InnerException always contains information about the actual error cause.

This is an operation error that depends on factors external to your program, and thus cannot be always avoided. Your code must handle it appropriately.

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