if (reportType == ReportDefinitionReportType.GEO_PERFORMANCE_REPORT)
{
var selectorq = new Selector();
selectorq.fields = new string[] { "canonicalName" };
// selectorq.dateRange = new Google.Api.Ads.AdWords.v201506.DateRange
// {
// min = start, //Start date
// max = end // End date
// };
var val = //list of ids.;
var predicate = new Predicate
{
field = "CountryCriteriaId", //Filter field (Key)
values = val.Split(new[] {','}), //Filter value
@operator = PredicateOperator.IN//Filter operator
};
selectorq.predicates = new Predicate[]
{
predicate
}
;
var location = new LocationCriterionService();
location.User = user;
var dta = location.get(selectorq);
}