GetAllMergeFieldsAsync() private method

Get all merge fields for a list Unique id for the list
private GetAllMergeFieldsAsync ( string list_id ) : Task
list_id string
return Task
Exemplo n.º 1
0
 /// <summary>
 /// Get all merge fields for a list
 /// <param name="list_id">Unique id for the list</param>
 /// </summary>
 public async Task <RootMergeField> GetAllMergeFieldsAsync(string list_id)
 {
     return(await listMergeFields.GetAllMergeFieldsAsync(list_id));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Get all merge fields for a list
 /// <param name="list_id">Unique id for the list</param>
 /// <param name="offset">The number of records from a collection to skip. Iterating over large collections with this parameter can be slow</param>
 /// <param name="count">The number of records to return.</param>
 /// </summary>
 public async Task <RootMergeField> GetAllMergeFieldsAsync(string list_id, int offset = 0, int count = 10)
 {
     return(await listMergeFields.GetAllMergeFieldsAsync(list_id, offset, count));
 }