xAPILaunch.xAPIStatement.xAPIStatement C# (CSharp) Method

xAPIStatement() public method

public xAPIStatement ( string a, string v, string o ) : System
a string
v string
o string
return System
        public xAPIStatement(string a, string v, string o)
        {
            this.actor = new xAPIActor( a);
            this._object = new xAPIObject(o);
            this.verb = new xAPIVerb(v);
        }
        public string toString()

Same methods

xAPIStatement::xAPIStatement ( xAPIActor a, xAPIVerb v, xAPIObject o ) : System