Obfuscation and protobuf.net - Exception: default enum value not defined - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T04:47:48Zhttp://stackoverflow.com/feeds/question/934459http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/934459/obfuscation-and-protobuf-net-exception-default-enum-value-not-defined1Obfuscation and protobuf.net - Exception: default enum value not definedhansol D2009-06-01T11:34:30Z2009-08-17T23:40:01Z
<p>I'm being presented with the following Exception when trying to serialize a class that contains enums in an obfuscated project:</p>
<blockquote>
<p>ProtoBuf.ProtoException: The default enum value X is not defined for the optional property Y</p>
</blockquote>
<p>If I exclude all affected enums from obfuscation everything runs fine, however, I switched to protobuf.net to be able to obfuscate more code content so I hope there is a better solution.</p>
<p>So is it the obfuscator which messes around to much for protobuf.net or am I declaring my enums the wrong way?</p>
<p>I have tried:</p>
<pre><code> [ProtoContract]
public enum X
{
Y, Z
}
</code></pre>
<p>and</p>
<pre><code> [ProtoContract]
public enum X
{
Y=0, Z=1
}
</code></pre>
<p>also without a contract at all and several other not so obvious things but nothing except exclusion works. By the way: Is there an example somewhere what we have to do with enums when using protobuf.net?</p>
http://stackoverflow.com/questions/934459/obfuscation-and-protobuf-net-exception-default-enum-value-not-defined/934515#9345150Answer by Marc Gravell for Obfuscation and protobuf.net - Exception: default enum value not definedMarc Gravell2009-06-01T11:50:44Z2009-06-01T12:36:49Z<p>Hmmm.... I'm honestly not aware of obfuscation issues with enums; I will have to prepare a test case to investigate.</p>
<p>It would help if you could tell me what obfuscation tool you are using. It would also help to see how you are specifying the default value (i.e. the property definition).</p>
<p>Note that it only really considers <code>[ProtoEnum]</code> in the case of enums (the <code>[ProtoContract]</code> can be used to give it a name, but this isn't used unless you are generating .proto files, which is very unlikely) - but I don't expect it to impact anything in this case (this is used to change the value "on the wire" to different values than are in .NET). As for examples; I confess I'm behind on the documentation - but the <a href="http://code.google.com/p/protobuf-net/source/browse/trunk/Examples/EnumTests.cs" rel="nofollow">enum test cases here</a> show typical usage.</p>
<p>I've logged this as <a href="http://code.google.com/p/protobuf-net/issues/detail?id=59" rel="nofollow">Issue 59</a>; if you could let me know the details above (either here, or e-mail me - see my profile), I'll try to investigate.</p>
<p>(if you didn't know, I'm the author of protobuf-net)</p>
<p><hr /></p>
<p>I tried the following (using .NET Reactor) and it worked fine... the implicit default of zero on enum values is the most likely suspect. Can you supply a test-case that shows it failing?</p>
<pre><code>using System;
using ProtoBuf;
[ProtoContract]
class Foo {
static void Main() {
Foo foo = new Foo { Bar = MyEnum.B };
Console.WriteLine(foo.Bar);
Foo clone = Serializer.DeepClone(foo);
Console.WriteLine(clone.Bar); // Expect "B"
}
[ProtoMember(1)]
public MyEnum Bar { get; set; }
}
enum MyEnum { A, B, C }
</code></pre>