MapAround.Web.Wms.WmsFeatureRender.Deserialize C# (CSharp) Method

Deserialize() private static method

Deserialization text.
private static Deserialize ( byte bytes ) : IList
bytes byte
return IList
        private static IList<TitleBufferElement> Deserialize(byte[] bytes)
        {
            var binaryFormatter = new BinaryFormatter();
            using (var ms = new MemoryStream(bytes))
            {
                var result = (IList<TitleBufferElement>)binaryFormatter.Deserialize(ms);
                return result;
            }

        }