OctoTorrent.Client.FastResume.Decode C# (CSharp) Method

Decode() public static method

public static Decode ( byte data ) : FastResume
data byte
return FastResume
        public static FastResume Decode(byte[] data)
        {
            var dictionary = (BEncodedDictionary) BEncodedValue.Decode(data);
            return new FastResume(dictionary);
        }