3

The documentation on MSDN says you can inherit from the IDataCacheObjectSerializer interface and update the configuration used to use custom serialization.

I can't find the IDataCacheObjectSerializer or the SerializationProperties element of the Configuration class in any DLL I've looked at, has anybody found these? Which version of the SDK are you using?

Thanks

Yossi Dahan
  • 5,389
  • 2
  • 28
  • 50
Rhys Godfrey
  • 220
  • 2
  • 10

2 Answers2

1

This is available with the Azure Cache (Preview) release that is part of Azure SDK 1.7

You can look at my blog for more info: http://blogs.msdn.com/b/jagan_peri/archive/2012/08/23/custom-serializer.aspx

Jagan Peri - Microsoft

Jagan Peri
  • 11
  • 1
0

The first step in the link you've provided is 'First prepare the development environment to use Caching.' which points at a set of instructions to follow first, which includes adding the necessary references

Yossi Dahan
  • 5,389
  • 2
  • 28
  • 50
  • 1
    The `Microsoft.ApplicationServer.Caching.DataCacheFactoryConfiguration` in the assembly linked to `Microsoft.ApplicationServer.Caching.Client, Version=101.0.0.0` (Azure SDK 1.6) does not contain the `SerializationProperties` property or any sign of the interface. I've also tried the Azure SDK AppFabric SDK 1.5 and June 2011 CTP. – Rhys Godfrey Dec 17 '11 at 11:05
  • oops. you are correct of course. I'll try and find out, if/when I do I'll update my (incorrect) answer. – Yossi Dahan Dec 17 '11 at 14:26