AcoustID.Web.LookupResult.LookupResult C# (CSharp) Method

LookupResult() public method

Initializes a new instance of the LookupResult class.
public LookupResult ( string id, double score ) : System.Collections.Generic
id string The AcoustID.
score double The score (between 0 and 1).
return System.Collections.Generic
        public LookupResult(string id, double score)
        {
            this.Id = id;
            this.Score = score;

            this.Recordings = new List<Recording>();
        }
LookupResult