mergedServices.QueryBucket.QueryBucket C# (CSharp) Méthode

QueryBucket() public méthode

a constructor taking another bucket to simple clone it here
public QueryBucket ( QueryBucket bucket ) : System
bucket QueryBucket the query bucket to clone it here
Résultat System
        public QueryBucket(QueryBucket bucket)
        {
            this.tokens = bucket.tokens.ToList();
            this.questionLeft = bucket.questionLeft.ToString();
            this.uriUsed = new List<string>(bucket.uriUsed);
            this.uriToDo = new List<string>(bucket.uriToDo);
            this.questionType = bucket.questionType;
        }

Same methods

QueryBucket::QueryBucket ( string question, util type ) : System