diff --git a/LibMpc/Mpc.cs b/LibMpc/Mpc.cs index 3471473..664f75d 100644 --- a/LibMpc/Mpc.cs +++ b/LibMpc/Mpc.cs @@ -61,24 +61,7 @@ namespace LibMpc /* #region Database Commands - /// - /// Returns all files in the database who's attribute matches the given token. Works like the Search command but is case sensitive. - /// - /// Specifies the attribute to search for. - /// The value the files attribute must have to be included in the result. - /// All files in the database who's attribute matches the given token. - public async Task> FindAsync(ITag tag, string token) - { - if (token == null) - throw new ArgumentNullException("token"); - - MpdResponse response = await _connection.SendAsync("find", new string[] { tag.Value, token }); - - if (response.State.Error) - throw new MpdResponseException(response.ErrorCode, response.ErrorMessage); - - return MpdFile.buildList(response); - } + /// /// Returns all values found in files of the MPD for the given attribute. ///