CSharpAnalytics.Activities.SocialActivity.SocialActivity C# (CSharp) Method

SocialActivity() public method

Create a new SocialActivity with various parameters to be captured.
public SocialActivity ( string action, string network, string pagePath = null, string target = null ) : System.Diagnostics
action string Social action being performed.
network string Name of the social network being acted upon.
pagePath string Optional path of the page the action occured on.
target string Optional target resource being acted upon.
return System.Diagnostics
        public SocialActivity(string action, string network, string pagePath = null, string target = null)
        {
            this.network = network;
            this.action = action;
            this.target = target;
            this.pagePath = pagePath;
        }
SocialActivity