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



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.ComTypes Namespace > _UAServiceResult Interface : InnerResult Property
Nested error information.
Syntax
'Declaration
 
<CanBeNullAttribute()>
Property InnerResult As UAServiceResult
'Usage
 
Dim instance As _UAServiceResult
Dim value As UAServiceResult
 
instance.InnerResult = value
 
value = instance.InnerResult
[CanBeNull()]
UAServiceResult InnerResult {get; set;}
[CanBeNull()]
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 OpcLabs.EasyOpc.UA.UACodeBits from OpcLabs.EasyOpc.UA.UAServiceResult, you can simply use the return value in place of a OpcLabs.EasyOpc.UA.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.

This member or type is for use from COM. It is not meant to be used from .NET or Python. Refer to the corresponding .NET member or type instead, if you are developing in .NET or Python.

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