| Author |
Message |
eric-914
Joined: 30 Nov 2012 Posts: 20
|
Posted: Tue Dec 04, 2012 6:12 pm Post subject: Microsoft.Practices.Prism question |
|
|
Hello, I've had trouble obfuscating a few ViewModel classes. Ultimately, I discovered that since I serialize a few of said classes I had to exclude them from obfuscation because of the Obfuscation/Reflection issue.
This isn't a big deal. But I noticed I couldn't simply obfuscate Microsoft.Practices.Prism. I thought since my VM classes derive from NotificationObject, that it's probably that this class needed to be excluded. But turns out there are no public methods. So NotificationObject could be obfuscated.
Ok then, who's the culprit? I tracked it down to this class/method/code:
| Code: |
public class UriQuery : IEnumerable<KeyValuePair<string, string>>
{
private readonly List<KeyValuePair<string, string>> entries
= new List<KeyValuePair<string, string>>();
public IEnumerator<KeyValuePair<string, string>> GetEnumerator()
{
return this.entries.GetEnumerator();
}
} |
Can someone explain to me why the above code can't be obfuscated? Just curious... |
|
| Back to top |
|
 |
james.billings
Joined: 16 Jun 2010 Posts: 840 Location: My desk.
|
Posted: Tue Dec 04, 2012 8:22 pm Post subject: |
|
|
Hi - some reasons for exclusion are detailed in this article although a quick scan doesn't immediately point to anything obvious as far as I can see.
One option would also be to turn on logging as this will normally have some clues in it as to why something was skipped from obfuscation. |
|
| Back to top |
|
 |
|
|
All times are GMT + 1 Hour
|
| Page 1 of 1 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group