コード例 #1
0
ファイル: AccountInformation.cs プロジェクト: yjtang/AutoBws
 public AccountInformation()
 {
     this._objRole = EnumCollection.eMemberPosition.Member;
     this._strLoginURL = "";
     this._strAccountID = "";
     this._strAccountPassword = "";
     this._objAccountStatus = EnumCollection.eMemberStatus.Open;
 }
コード例 #2
0
ファイル: AccountInformation.cs プロジェクト: yjtang/AutoBws
 public AccountInformation(string text1, string text2, string text3)
 {
     this._objRole = EnumCollection.eMemberPosition.Member;
     this._strLoginURL = "";
     this._strAccountID = "";
     this._strAccountPassword = "";
     this._objAccountStatus = EnumCollection.eMemberStatus.Open;
     this._strLoginURL = text1;
     this._strAccountID = text2;
     this._strAccountPassword = text3;
 }