SmartAssembly
Latest version: 6.7
Knowledge Base
Serialization exceptions occurring in obfuscated assemblies
Category: Troubleshooting & error messages
Date: 12 Apr 2011
Product: SmartAssembly
After using SmartAssembly on an assembly that serializes objects, XML or Serialization exceptions may occur.
Obfuscating serializable code with SmartAssembly, for the most part, will not break serialization of classes. There are some special situations to be aware of, however.
When obfuscating classes and methods in a DLL, SmartAssembly should not cause a problem.
Classes and properties with the public access modifier are not renamed. In order to be serialized, these classes are marked as public, so by default there should be no issues.
Classes and properties in an executable assembly, however, will be made private and renamed, breaking serialization if the class is defined in the executable. SA attempts to work around this by automatically excluding from obfuscation all classes with the Serializable attribute set.
For example, this class can be serialized after being obfuscated by SA:
- [C#]
- [Serializable]
- public class MyClass
- {
- }
- [/C#]
Alternatively, you can exclude the class from serialization from within the SA project if you do not wish to modify your own code.
The reason for excluding classes and properties from obfuscation is that .NET Reflection technology is used to find the class and property names in order to create XML elements with the proper name. Therefore, if it's absolutely necessary to obfuscate classes that you want to serialize, you can work around this by implementing ISerializable on the class. Using this strategy, you must ensure all dependent classes also implement ISerializable on their properties or are excluded from obfuscation.
- [C#]
- [Serializable]
- public class MyClass : ISerializable
- {
- public List
ListOfThings; - #region ISerializable Members
- public void GetObjectData(SerializationInfo info, StreamingContext context)
- {
- info.AddValue("ListOfThings", ListOfThings);
- }
- #endregion
- [/C#]
The Pruning function of SmartAssembly will destroy metadata necessary for both serialization and deserialization. For instance, any properties of your serializable class will cease to exist, as far as serialization is concerned. All classes referenced by properties of the serialized class, and their children, must be excluded from pruning either in the SA project, or using the DoNotPrune or DoNotPruneType attribute.
- [C#]
- [Serializable, SmartAssembly.Attributes.DoNotPruneType]
- public class MyClass
- [/C#]
Document ID: KB201104000492 Keywords: SmartAssembly,Serialization,obfuscation,Reflection,Pruning
Was this article helpful?
SmartAssembly
- Using Smartassembly to obfuscate a windows service
- Obfuscation not renaming identically-named methods in different classes
- Serialization exceptions occurring in obfuscated assemblies
- SmartAssembly skipping obfuscation of some classes in your assembly
- SmartAssembly is not merging or embedding all assembly dependencies
- Can I customize the path to the MDB database?
- System.InvalidOperationException when attempting to connect to local SmartAssembly database
- Protecting website code using SmartAssembly
- Visual Studio Deployment Projects including unprotected builds
- SmartAssembly MSBUILD tasks failing because of difference in log4net assembly
- SmartAssembly Error Reporting: This application has submitted too many reports
- The assembly is being merged, but the dependent assembly isn't
- ERR 2002: Server did not recognize the value of HTTP Header SOAPAction
- The error report is not associated with a valid project ID - SmartAssembly
- Application built with an evaluation edition of SmartAssembly
- How end users can change their participation in Feature Usage Reporting
- Log file for SmartAssembly
- Moving SmartAssembly to another computer
- 'Using JET databases is not possible in 64-bit applications' error when using MSBuild or TFS
- SmartAssembly stack trace is invalid when Method Parent Obfuscation is enabled
- Upgrading SmartAssembly version 4.x to version 5
- Upgrading SmartAssembly Standard to Professional
- Problems building WPF applications with SmartAssembly 6.7
all products
- Some Red Gate products identified as containing a trojan by Anti-Virus software
- Activation may fail with Unknown Error -1
- Product uses web help although a CHM file is available locally
- Argument exception resulting from missing environment variable
- Check for updates may fail when used through proxies
- 'Unidentified Publisher' error when repairing or uninstalling
- Licensing activates product as standard edition
- Moving Red Gate software products to another machine
- Red Gate tools log locations
- The application UI opening slowly when there is no internet access
SmartAssembly
all products
- Red Gate product acknowledgements
- Activating your products
- Activating your products
- Red Gate bundle history
- Check for updates
- Troubleshooting Check for Updates errors
- Current versions
- Deactivating your products
- Installing Red Gate products from the .msi file
- Requesting additional activations
- Serial numbers for bundles
- Reactivating using a different serial number
- Extending your trial
- Finding your serial numbers
- Moving a serial number from one computer to another
- No response received for manual activation
- Licensing and activation resources
- Licensing and activation resources
- Troubleshooting licensing and activation errors
- Licensing and activation FAQs
- Red Gate tools log file locations
- Download old versions of products
- Download product prerequisites & utilities
- Support & upgrades
- Upgrading your software
- Upgrading FAQs

Using SmartAssembly for obfuscation