Class LinkClick
- Namespace
 - Dynamicweb.Mailing.Links
 
- Assembly
 - Dynamicweb.Mailing.dll
 
Represents link click object
  
  public class LinkClick
  - Inheritance
 - 
      
      LinkClick
 
- Inherited Members
 
Properties
ClickerKey
Gets the clicker key.
  
  public string ClickerKey { get; }
  Property Value
ClickTime
Gets the click time.
  
  public DateTime ClickTime { get; }
  Property Value
Id
Gets the id.
  
  public int Id { get; }
  Property Value
LinkId
Gets the link id.
  
  public int LinkId { get; }
  Property Value
SessionId
Gets the session id.
  
  public string SessionId { get; }
  Property Value
Methods
GetLinkClicksByLinkId(int)
Gets the link clicks by link id.
  
  public static List<LinkClick> GetLinkClicksByLinkId(int linkId)
  Parameters
linkIdint- The link id.
 
Returns
RegisterClick(string, int, string)
Registers the click.
  
  public static LinkClick RegisterClick(string sessionId, int linkId, string clickerKey)