Hi, you can do it like this:

<igniteConfiguration xmlns="
http://ignite.apache.org/schema/dotnet/IgniteConfigurationSection";>
<binaryConfiguration>
<typeConfigurations>
<binaryTypeConfiguration typeName="MyClass">
<serializer type="Apache.Ignite.Core.Binary.BinaryReflectiveSerializer,
Apache.Ignite.Core" rawMode="true" />
</binaryTypeConfiguration>
</typeConfigurations>
</binaryConfiguration>
</igniteConfiguration>

On Thu, Jun 23, 2016 at 11:06 AM, mrinalkamboj <[email protected]>
wrote:

> What is the App.Config replacement to enable the following c# code in the
> documents or this can be only done in C# code
>
> var binaryConfiguration = new BinaryConfiguration
> {
>     TypeConfigurations = new[]
>     {
>         new BinaryTypeConfiguration(typeof(MyClass))
>         {
>             Serializer = new BinaryReflectiveSerializer {RawMode = true}
>         }
>     }
> };
>
>
>
> --
> View this message in context:
> http://apache-ignite-users.70518.x6.nabble.com/Enable-Binary-Reflective-Serializer-in-the-app-config-tp5819.html
> Sent from the Apache Ignite Users mailing list archive at Nabble.com.
>

Reply via email to