/// <summary>
 /// Initializes a new instance of the <see cref="GithubAuthenticationActor"/> class.
 /// </summary>
 /// <param name="statusLabel">
 /// The status label.
 /// </param>
 /// <param name="form">
 /// The form.
 /// </param>
 public GithubAuthenticationActor(Label statusLabel, GithubAuth form)
 {
     this.statusLabel = statusLabel;
     this.form        = form;
     this.Unauthenticated();
 }
 public GithubAuthenticationActor(Label statusLabel, GithubAuth form)
 {
     _statusLabel = statusLabel;
     _form = form;
     Unauthenticated();
 }
Exemplo n.º 3
0
 public GithubAuthenticationActor(Label statusLabel, GithubAuth form)
 {
     _statusLabel = statusLabel;
     _form        = form;
     Unauthenticated();
 }