'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.