CSharpAnalytics.Activities.SocialActivity.SocialActivity C# (CSharp) 메소드

SocialActivity() 공개 메소드

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.
리턴 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