DataContractMultiGet throws exception
description
I have downloaded and try to use sharecache. I developed my program with these two functions DataContractMultiAdd and DataContractMultiGet, but I got exception when try to get object from cache with DataContractMultiGet(List<string> keys), I found a bug at file "..\SharedCache.WinServiceCommon\Provider\Cache\IndexusSharedCacheProvider.cs" at method
"public override IDictionary<string, byte[]> MultiGet(List<string> keys, string host)" at line "msg.Payload = Formatters.Serialization.DataContractBinarySerialize(keys);" this line is serializing List<string> keys object with datacontractserializer. this line must be "msg.Payload = Formatters.Serialization.BinarySerialize(keys);" binaryserializer for List<string> keys object.