AlchemyAPI.AlchemyAPI_ConstraintQueryParams.setCQuery C# (CSharp) Метод

setCQuery() публичный метод

public setCQuery ( string cQuery ) : void
cQuery string
Результат void
		public void setCQuery(string cQuery)
		{
			this.cQuery = cQuery;
		}
		override public string getParameterString()

Usage Example

Пример #1
0
        public string HTMLGetConstraintQuery(string html, string url, string query)
        {
            CheckHTML(html, url);
            if (query.Length < 2)
            {
                System.ApplicationException ex =
                    new System.ApplicationException("Invalid constraint query specified.");

                throw ex;
            }

            AlchemyAPI_ConstraintQueryParams cqParams = new AlchemyAPI_ConstraintQueryParams();
            cqParams.setCQuery(query);

            return HTMLGetConstraintQuery(html, url, cqParams);
        }
All Usage Examples Of AlchemyAPI.AlchemyAPI_ConstraintQueryParams::setCQuery
AlchemyAPI_ConstraintQueryParams