Chimney.MPD.ChimneyMPDServer.ErrorResponse C# (CSharp) Méthode

ErrorResponse() public méthode

public ErrorResponse ( string response, int id, int position ) : bool
response string
id int
position int
Résultat bool
        public bool ErrorResponse(string response, int id, int position)
        {
            if (ResponsConfigDictionary.ContainsKey(id))
            {
                ResponsConfigDictionary[id].error_response = true;

                ResponsConfigDictionary[id].AppendResponse(response, position);

                return true;
            }
            return false;
        }