Chimney.MPD.ChimneyMPDServer.EventResponse C# (CSharp) Method

EventResponse() public method

public EventResponse ( string response, int id, int position ) : bool
response string
id int
position int
return bool
        public bool EventResponse(string response, int id, int position)
        {
            if (ResponsConfigDictionary.ContainsKey(id))
            {
                ResponsConfigDictionary[id].AppendResponse(response, position);

                return true;
            }
            return false;
        }