Ejemplo n.º 1
0
 public DataWorker(ABC4TrustEventHandler callback, int handle)
 {
     storeData     = false;
     this.callback = callback;
     this.handle   = handle;
     this.data     = null;
 }
Ejemplo n.º 2
0
 public DataWorker(ABC4TrustEventHandler callback, int handle, String data)
 {
     storeData     = true;
     this.callback = callback;
     this.handle   = handle;
     this.data     = data;
 }
Ejemplo n.º 3
0
 public PresentWorker(ABC4TrustEventHandler callback, int handle, string language, string policy_url, string verify_url, string optional_cookie)
 {
     this.callback        = callback;
     this.handle          = handle;
     this.language        = language;
     this.policy_url      = policy_url;
     this.verify_url      = verify_url;
     this.optional_cookie = optional_cookie;
 }
Ejemplo n.º 4
0
 public IssueWorker(ABC4TrustEventHandler callback, int handle, string language, string start_url, string step_url, string status_url, string optional_cookie)
 {
     this.callback        = callback;
     this.handle          = handle;
     this.language        = language;
     this.start_url       = start_url;
     this.step_url        = step_url;
     this.status_url      = status_url;
     this.optional_cookie = optional_cookie;
 }
Ejemplo n.º 5
0
 public SayHelloWorker(ABC4TrustEventHandler callback, int handle, string msg)
 {
     this.callback = callback;
     this.handle   = handle;
     this.msg      = msg;
 }
 public DataWorker(ABC4TrustEventHandler callback, int handle)
 {
     storeData = false;
     this.callback = callback;
     this.handle = handle;
     this.data = null;
 }
 public DataWorker(ABC4TrustEventHandler callback, int handle, String data)
 {
     storeData = true;
     this.callback = callback;
     this.handle = handle;
     this.data = data;
 }
 public PresentWorker(ABC4TrustEventHandler callback, int handle, string language, string policy_url, string verify_url, string optional_cookie)
 {
     this.callback = callback;
     this.handle = handle;
     this.language = language;
     this.policy_url = policy_url;
     this.verify_url = verify_url;
     this.optional_cookie = optional_cookie;
 }
 public IssueWorker(ABC4TrustEventHandler callback, int handle, string language, string start_url, string step_url, string status_url, string optional_cookie)
 {
     this.callback = callback;
     this.handle = handle;
     this.language = language;
     this.start_url = start_url;
     this.step_url = step_url;
     this.status_url = status_url;
     this.optional_cookie = optional_cookie;
 }
Ejemplo n.º 10
0
 public SayHelloWorker(ABC4TrustEventHandler callback, int handle, string msg)
 {
     this.callback = callback;
     this.handle = handle;
     this.msg = msg;
 }