Skip to content

Commit 96e0f6d

Browse files
committed
Printing all current handlers.
1 parent a2815a6 commit 96e0f6d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

eFormAPI/Installation/CustomActions/CustomAction.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -675,6 +675,12 @@ private static void AddImageHandlers(string siteName)
675675
MessageBox.Show("jpegHandlerMissing");
676676
jpegHandlerMissing = false;
677677
}
678+
string obj = "";
679+
foreach (var part in ce.Attributes)
680+
{
681+
obj += part.Name + " : " + part.Value + "\n";
682+
}
683+
MessageBox.Show("current ce is :\n" + obj.ToString());
678684
}
679685

680686
if (pngHandlerMissing)

0 commit comments

Comments
 (0)