Table of Contents

Class LinkClick

Namespace
Dynamicweb.Mailing.Links
Assembly
Dynamicweb.Mailing.dll
Represents link click object
public class LinkClick
Inheritance
LinkClick
Inherited Members

Properties

Gets the clicker key.
public string ClickerKey { get; }

Property Value

string
Gets the click time.
public DateTime ClickTime { get; }

Property Value

DateTime
Gets the id.
public int Id { get; }

Property Value

int
Gets the link id.
public int LinkId { get; }

Property Value

int
Gets the session id.
public string SessionId { get; }

Property Value

string

Methods

Gets the link clicks by link id.
public static List<LinkClick> GetLinkClicksByLinkId(int linkId)

Parameters

linkId int
The link id.

Returns

List<LinkClick>
List of LinkClick items
Registers the click.
public static LinkClick RegisterClick(string sessionId, int linkId, string clickerKey)

Parameters

sessionId string
The session id.
linkId int
The link id.
clickerKey string
The clicker key.

Returns

LinkClick
To top