From 53b29c6732ba0dfb003f2cc21ccf70d89c94890c Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 14:39:53 +0100 Subject: [PATCH] =?UTF-8?q?*=20=E2=80=9ELinie=201531:=20WMEntityFolder=20i?= =?UTF-8?q?s=20not=20defined=20anywhere=20in=20the=20project=20or=20its=20?= =?UTF-8?q?dependencies.=20The=20code=20is=20updated=20to=20throw=20a=20No?= =?UTF-8?q?tImplementedException=20with=20a=20clear=20message,=20as=20the?= =?UTF-8?q?=20correct=20value=20for=20WMEntityFolder=20must=20be=20defined?= =?UTF-8?q?=20or=20provided=20based=20on=20the=20Windream=20API=20document?= =?UTF-8?q?ation=20or=20business=20logic.=E2=80=9C=20in=20Datei=20?= =?UTF-8?q?=E2=80=9EWindream\Windream.vb=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Windream/Windream.vb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Windream/Windream.vb b/Windream/Windream.vb index 951b4df4..fd132f8b 100644 --- a/Windream/Windream.vb +++ b/Windream/Windream.vb @@ -1528,7 +1528,8 @@ Public Class Windream End Function Public Function TestFolderExists(Path As String) As Boolean - Return TestObjectExists(GetNormalizedPath(Path, False), WMEntityFolder) + ' TODO: WMEntityFolder is not defined. Please define WMEntityFolder or replace it with the correct constant or enum value representing a folder entity in your Windream API. + Throw New NotImplementedException("WMEntityFolder is not defined. Please define WMEntityFolder or provide the correct value for folder entity.") End Function Public Function TestFileExists(Path As String) As Boolean