2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 14:38:43 +00:00
This commit is contained in:
2026-06-13 12:06:24 +03:00
parent 9c14fdf6bd
commit e77bda487d
3 changed files with 12 additions and 4 deletions
+5 -2
View File
@@ -127,13 +127,16 @@ public class RemoteTypeDef:TypeDef
// try to get proxy type
od._proxyType = connection.Instance?.Warehouse?.TryGetProxyType(od.Kind, od.Domain, od.Name);
#if VERBOSE
if (od._proxyType == null)
Console.WriteLine("Proxy type not found " + od.Name);
#endif
if (od._proxyType != null)
{
Console.WriteLine("Updating : " + od.Name);
#if VERBOSE
Console.WriteLine("Updating TypeDef Proxy: " + od.Name);
#endif
// update PropertyInfo, MethodInfo, EventInfo, FieldInfo
// @TODO Check signature match as well, not only name, to avoid conflicts