This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

C# : Set a default value for MFIdentifier in Configuration

Hello, 

In a VAF application, I want to show the MFidentifier in configuration panel. But I can't make the default value work. It's always marked as error. For example:

[DataMember]
[MFPropertyDef(Required = true)]
public MFIdentifier mfIdPropActeur = "PD.SOCLE.Acteur";

[DataMember]
[MFPropertyDef(Required = true)]
[JsonConfEditor(DefaultValue = "PD.SOCLE.Action")]
public MFIdentifier mfIdPropAction = "PD.SOCLE.Action";

The question is simple : how to make work? How to specify 

Thanks,

Amaury Bianchi