Opc.Ua.Com.Server.ComHdaItemManager.GetRemoteDataType C# (CSharp) 메소드

GetRemoteDataType() 공개 메소드

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

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

            return TypeInfo.Scalars.Variant;
        }