public static T Decode<T>(RawReader reader) where T : BEncodedValue { return (T)BEncodedValue.Decode(reader); }
internal abstract void DecodeInternal(RawReader reader);
/// <summary> /// /// </summary> /// <param name="reader"></param> internal override void DecodeInternal(RawReader reader) { DecodeInternal(reader, reader.StrictDecoding); }