Ads API .NET library
|
A utility class for handling PQL objects. More...
Static Public Member Functions | |
static object | GetValue (Value value) |
Gets the underlying value of the Value object. For SetValues, returns a List of underlying values. More... | |
static List< String[]> | ResultSetToStringArrayList (ResultSet resultSet) |
Gets the result set as list of string arrays. More... | |
static String | ResultSetToString (ResultSet resultSet) |
Gets the result set as a table represenation in the form of: More... | |
static String[] | GetColumnLabels (ResultSet resultSet) |
Gets the column labels for the result set. More... | |
static object[] | GetRowValues (Row row) |
Gets the row values for a row of the result set in the form of an object array. More... | |
static String[] | GetRowStringValues (Row row) |
Gets the row values for a row of the result set in a the form of a string array. More... | |
A utility class for handling PQL objects.
|
inlinestatic |
Gets the column labels for the result set.
resultSet | The result set to get the column labels for. |
|
inlinestatic |
Gets the row values for a row of the result set in a the form of a string array.
null
values are interperted as empty strings.
row | The row to get the values for. |
|
inlinestatic |
Gets the row values for a row of the result set in the form of an object array.
row | The row to get the values for. |
|
inlinestatic |
Gets the underlying value of the Value object. For SetValues, returns a List of underlying values.
The Value object to get the value from.
Referenced by Google.Api.Ads.AdManager.Examples.CSharp.v202405.GetRecentChanges.Run().
|
inlinestatic |
Gets the result set as a table represenation in the form of:
+-------+-------+-------+ |column1|column2|column3| +-------+-------+-------+ |value1 |value2 |value3 | +-------+-------+-------+ |value1 |value2 |value3 | +-------+-------+-------+
resultSet | The result set to display as a string |
|
inlinestatic |
Gets the result set as list of string arrays.
resultSet | The result set to convert to a string array list. |
References Google.Api.Ads.AdManager.v202405.ResultSet.rows.