OPC Studio User's Guide and Reference
InnerResult Property (UAServiceResult)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA Namespace > UAServiceResult Class : InnerResult Property
Nested error information.
Syntax
'Declaration
 
Public Property InnerResult As UAServiceResult
'Usage
 
Dim instance As UAServiceResult
Dim value As UAServiceResult
 
instance.InnerResult = value
 
value = instance.InnerResult
public UAServiceResult InnerResult {get; set;}
public:
property UAServiceResult^ InnerResult {
   UAServiceResult^ get();
   void set (    UAServiceResult^ value);
}

Property Value

This value of this property can be null (Nothing in Visual Basic).

The default value of this property is null.

Because there is an implicit conversion to UACodeBits from UAServiceResult, you can simply use the return value in place of a UACodeBits (representing the code bits of the status code). When the implicit conversion operators are not supported (such as with Python.NET), you can use the ToUACodeBits method instead.

Remarks

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