We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48fbbae commit a2815a6Copy full SHA for a2815a6
eFormAPI/Installation/CustomActions/CustomAction.cs
@@ -695,7 +695,12 @@ private static void AddImageHandlers(string siteName)
695
//MessageBox.Show("pngHandlerMissing 6");
696
configurationElementpng["responseBufferLimit"] = 0;
697
//MessageBox.Show("pngHandlerMissing 7");
698
- MessageBox.Show("configurationElementpng is " + configurationElementpng.ToString());
+ string obj = "";
699
+ foreach (var part in configurationElementpng.Attributes)
700
+ {
701
+ obj += part.Name + " : " + part.Value + "\n";
702
+ }
703
+ MessageBox.Show("configurationElementpng is " + obj.ToString());
704
705
handlersCollection.Add(configurationElementpng);
706
} catch (Exception ex)
0 commit comments