Exemplo n.º 1
0
 public NodeAuth(NodeAuthType type, string username, string secret)
 {
     Type = type;
     Secret = secret;
     UserName = username;
 }
Exemplo n.º 2
0
 public NodeAuth(NodeAuthType type, string secret)
     : this(type, DefaultUserName, secret)
 {
 }