Opc.Ua.Com.Server.ComHdaItemManager.GetRemoteDataType C# (CSharp) Method

GetRemoteDataType() public method

Gets the type of the remote data.
public GetRemoteDataType ( HdaItemHandle handle ) : TypeInfo
handle HdaItemHandle The handle.
return TypeInfo
        public TypeInfo GetRemoteDataType(HdaItemHandle handle)
        {
            InternalHandle handle2 = handle as InternalHandle;

            if (handle2 != null)
            {
                return handle2.Item.RemoteType;
            }

            return TypeInfo.Scalars.Variant;
        }