vote up 1 vote down star

Can I rely on the fact that the underlying field to a property named Foo is called "k__BackingField" ?

flag

63% accept rate
Re Hessian; why does it care about field names? property names would be more appropriate, no? If not, perhaps invent an attribute to name the member, i.e. [Hessian.Storage("foo")] public int Foo {get;private set;} – Marc Gravell Jul 23 at 13:23
I'd rather just implement the hack of canonizing the name (<Foo>k__backingField --> Foo) - it's easier on clients. – ripper234 Jul 23 at 13:30

4 Answers

vote up 3 vote down check

No, in short.

And for this very reason, auto-properties are pain when used with field-based serializers like BinaryFormatter (I'm sure I might have mentioned that here before ;-p).

See: Obfuscation, serialization and automatically implemented properties for some thoughts on this (and a solution).

link|flag
vote up 1 vote down

That the spec does not specify the backing field's name (with good reason - you shouldn't take a dependency on it).

You should investigate to see whether the Mono compiler does the same thing for example.

Sanity checking that the field had the CompilerGeneratedAttribute applied to it would be a good idea.

Note that explicit interface implementations would come out (currently) as:

<Full.Namespace.To.Interface.IBlah.Foo>k__BackingField

So code which is trying to serialize a specific aspect of a class in this fashion could be mislead.

If you wanted to be really belt and braces about your code you could use a library like mono's Cecil to inspect the get function of the property and determine the field used.

link|flag
I just want it to work for me on Windows, nothing too fancy - but checking the attribute is an excellent idea, thanks. – ripper234 Jul 23 at 14:23
vote up 0 vote down

I don't think so. If you need the backing field, use a 'regular' property.

link|flag
vote up 0 vote down

Of course not. That would be a private implementation detail.

And why on Earth would you want to know?

link|flag
Fixing a bug in Hessian's serialization. Auto properties are not serialized correctly, because they use the field's names. – ripper234 Jul 23 at 13:20
"Hessian's serialization"? Link, please? Never heard of it. – John Saunders Jul 23 at 13:44
I assume hessiancsharp.org – ShuggyCoUk Jul 23 at 13:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.