Chimney.MPD.ChimneyMPDServer.ErrorResponse C# (CSharp) 메소드

ErrorResponse() 공개 메소드

public ErrorResponse ( string response, int id, int position ) : bool
response string
id int
position int
리턴 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;
        }