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

getCQuery() публичный Метод

public getCQuery ( ) : string
Результат string
		public string getCQuery()
		{
			return cQuery;
		}
		public void setCQuery(string cQuery)

Usage Example

Пример #1
0
        public string URLGetConstraintQuery(string url, AlchemyAPI_ConstraintQueryParams parameters)
        {
            CheckURL(url);
            if (parameters.getCQuery().Length < 2)
            {
                System.ApplicationException ex =
                    new System.ApplicationException("Invalid constraint query specified.");

                throw ex;
            }

            parameters.setUrl(url);

            return(POST("URLGetConstraintQuery", "url", parameters));
        }
All Usage Examples Of AlchemyAPI.AlchemyAPI_ConstraintQueryParams::getCQuery
AlchemyAPI_ConstraintQueryParams