コード例 #1
0
ファイル: NodeAuth.cs プロジェクト: aggrata/MCloud
 public NodeAuth(NodeAuthType type, string username, string secret)
 {
     Type = type;
     Secret = secret;
     UserName = username;
 }
コード例 #2
0
ファイル: NodeAuth.cs プロジェクト: aggrata/MCloud
 public NodeAuth(NodeAuthType type, string secret)
     : this(type, DefaultUserName, secret)
 {
 }