Ejemplo n.º 1
0
 public Actor(Actor actor)
 {
     this.name = actor.name;
     this.mbox = actor.mbox;
     this.mbox_sha1sum = actor.mbox_sha1sum;
     this.openID = actor.openID;
     this.account = actor.account;
 }
Ejemplo n.º 2
0
 public AgentProfile(Actor actor, string id, string contents, string etag, string contentType)
 {
     this.actor = actor;
     this.id = id;
     this.contents = contents;
     this.etag = etag;
     this.contentType = contentType;
 }
Ejemplo n.º 3
0
 public Statement(Actor actor, PredefinedVerbs verb, StatementTarget statementTarget)
     : this(actor, new StatementVerb(verb), statementTarget)
 {
 }
Ejemplo n.º 4
0
 public Statement(Actor actor, StatementVerb verb, StatementTarget statementTarget)
 {
     this.actor = actor;
     this.verb = verb;
     this._object = statementTarget;
 }