Opc.Ua.Com.Client.ComDaClientNodeManager.RemoteToLocalValue C# (CSharp) Method

RemoteToLocalValue() public static method

Converts a DA value to a UA compatible type.
public static RemoteToLocalValue ( object srcValue, Variant &dstValue ) : int
srcValue object The source value.
dstValue Variant The converted value.
return int
        public static int RemoteToLocalValue(object srcValue, out Variant dstValue)
        {
            object value = RemoteToLocalValue(srcValue, BuiltInType.Null, BuiltInType.Null);
            dstValue = new Variant(value);
            return ResultIds.S_OK;
        }

Same methods

ComDaClientNodeManager::RemoteToLocalValue ( object srcValue, BuiltInType srcType, BuiltInType dstType ) : object