From e1430d193f0e493d9c5a953986a39dace1a01a75 Mon Sep 17 00:00:00 2001 From: glucaci Date: Fri, 2 Dec 2016 13:26:01 +0100 Subject: [PATCH] Reflection commands --- LibMpc/Commands/Commands.Reflection.cs | 28 ++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 LibMpc/Commands/Commands.Reflection.cs diff --git a/LibMpc/Commands/Commands.Reflection.cs b/LibMpc/Commands/Commands.Reflection.cs new file mode 100644 index 0000000..45def98 --- /dev/null +++ b/LibMpc/Commands/Commands.Reflection.cs @@ -0,0 +1,28 @@ +namespace LibMpc +{ + public partial class Commands + { + /// + /// https://www.musicpd.org/doc/protocol/reflection_commands.html + /// + public static class Reflection + { + // TODO: config + // TODO: commands + // TODO: notcommands + + public class TagTypes : IMpcCommand + { + public string Value => "tagtypes"; + + public object ParseResponse(object response) + { + throw new System.NotImplementedException(); + } + } + + // TODO: urlhandlers + // TODO: decoders + } + } +}