LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Labview error 1779 when reading .NET core class property

Solved!
Go to solution

Hello, I am using external .NET built in .NET 8 library for SAP communication. When I try to read property of output class I get error 1779 and explaination 'LabVIEW: (Hex 0x6F3) The specified property was not found in the .NET Core type.' Property should return array of .NET class. Does it mean that array of .NET (8) Core class is not allowed in Labview? 

 

Or am I missing something? 

 

I am using Labview 2025 Q3

soundslikesound_1-1760442283103.png

 

 

0 Kudos
Message 1 of 9
(413 Views)

Hello,

 

LabVIEW 2025 Q3 supports .NET Core and .NET 5+ (including .NET 8), but with some limitations.

 

To actually use, if you drop a .NET constructor node on the block diagram, right-click and select "Select .NET Core Constructor"

 

Souhe_0-1760950539804.png

 

Using “Select .NET Core Constructor” ensures LabVIEW loads your .NET 8 DLL correctly.

 

Souha


 

0 Kudos
Message 2 of 9
(363 Views)

Hello Souhe, 

 

if you check my screenshot I am creating creating class SapACBBackflash+ResultTable from Invoke node and then Property Node throws error. Property node does not allow me switch between .NET Core/Framework. Here I am attaching screenshot of the whole code. 

soundslikesound_0-1761038025906.png

 

0 Kudos
Message 3 of 9
(335 Views)

Hello,

 

Thank you for the informations. Please review your .NET code to ensure the property you want Labview to access is declared as public. If Labview still cannot read the property, try exposing a property that returns a primitive array, to confirm Labview’s array support.

 

Alternatively, create a public method that returns the array, which can be called from labview using an Invoke Node. Also, verify that your assembly and all its dependencies are loaded correctly in Labview. and make sure both Labview 2025 Q3 and the .NET 8 runtime are fully updated to the latest patches.

 

References : Using .NET Assemblies with LabVIEW - NI

Characteristics of LabVIEW-Built .NET Framework Assemblies - NI

 

Souha

0 Kudos
Message 4 of 9
(314 Views)
Solution
Accepted by topic author soundslikesound

Hello Soohe, I did some changes inside my .NET code. Now inside GetData method  I am doing needed convertion and method now returns ResultTableItem (from ResultTable.DetailReturn[0]). It works fine when Labview reads class instead of array of classes. 

 

So I presume this is a bug and should be reported (don't know how, yet).

 

 

soundslikesound_1-1761142133804.png

 

0 Kudos
Message 5 of 9
(283 Views)

Report as a Bug? 
=> https://www.ni.com/my/s/technical-support

 

Add a link to this Forum thread as well! 🙂

Best

Claude

CLA / CTD
0 Kudos
Message 6 of 9
(266 Views)

Bug reported. Thank you for link!

 

0 Kudos
Message 8 of 9
(251 Views)

It seems .NET (core) support is still quite broken 😞 I hope most of the bugs will be solved in patches. 

0 Kudos
Message 9 of 9
(249 Views)