GetSpecificSubscriberInfoAsync() private method

Return click details for a specific link Campaign Id The id for the link The MD5 hash of the lowercase version of the list member’s email address
private GetSpecificSubscriberInfoAsync ( string campaignId, string linkId, string subscriber_hash ) : Task
campaignId string
linkId string
subscriber_hash string
return Task
Esempio n. 1
0
 /// <summary>
 /// Return click details for a specific link
 /// <param name="campaignId">Campaign Id</param>
 /// <param name="linkId">The id for the link</param>
 /// <param name="subscriber_hash">The MD5 hash of the lowercase version of the list member’s email address</param>
 /// </summary>
 public async Task <ClickReports> GetSpecificSubscriberInfoAsync(string campaignId, string linkId, string subscriber_hash)
 {
     return(await clickDetails.GetSpecificSubscriberInfoAsync(campaignId, linkId, subscriber_hash));
 }