コード例 #1
0
ファイル: Account.cs プロジェクト: Pirulax/Slipe-Core
 internal static Account Get(MtaAccount account)
 {
     if (account == null)
     {
         return(null);
     }
     if (!accounts.ContainsKey(account))
     {
         return(new Account(account));
     }
     return(accounts[account]);
 }
コード例 #2
0
 internal static Account Get(MtaAccount account)
 {
     if (account == null)
     {
         return(null);
     }
     if (accounts == null)
     {
         accounts = new Dictionary <object, Account>();
     }
     if (!accounts.ContainsKey(account))
     {
         return(new Account(account));
     }
     return(accounts[account]);
 }
コード例 #3
0
 internal OnLogoutEventArgs(MtaAccount previousAccount, MtaAccount newAccount)
 {
     PreviousAccount = Account.Get(previousAccount);
     NewAccount      = Account.Get(newAccount);
 }
コード例 #4
0
 internal OnDataChangeEventArgs(MtaAccount account, dynamic key, dynamic value)
 {
     Account = Account.Get(account);
     Key     = (string)key;
     Value   = (string)value;
 }
コード例 #5
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static string GetAccountIP(MtaAccount theAccount)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static bool SetAccountName(MtaAccount theAccount, string name, bool allowCaseVariations)
 {
     throw new NotImplementedException();
 }
コード例 #7
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static bool SetAccountPassword(MtaAccount theAccount, string password)
 {
     throw new NotImplementedException();
 }
コード例 #8
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static string GetAccountData(MtaAccount theAccount, string key)
 {
     throw new NotImplementedException();
 }
コード例 #9
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static bool LogIn(MtaElement thePlayer, MtaAccount theAccount, string thePassword)
 {
     throw new NotImplementedException();
 }
コード例 #10
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static bool SetAccountData(MtaAccount theAccount, string key, dynamic value)
 {
     throw new NotImplementedException();
 }
コード例 #11
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static bool RemoveAccount(MtaAccount theAccount)
 {
     throw new NotImplementedException();
 }
コード例 #12
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static MtaElement GetAccountPlayer(MtaAccount theAccount)
 {
     throw new NotImplementedException();
 }
コード例 #13
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static bool CopyAccountData(MtaAccount theAccount, MtaAccount fromAccount)
 {
     throw new NotImplementedException();
 }
コード例 #14
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static dynamic GetAllAccountData(MtaAccount theAccount)
 {
     throw new NotImplementedException();
 }
コード例 #15
0
ファイル: MTAServer.cs プロジェクト: progrocket/Slipe-Core
 public static int GetAccountID(MtaAccount theAccount)
 {
     throw new NotImplementedException();
 }
コード例 #16
0
 internal Account(MtaAccount account)
 {
     MTAAccount = account;
     accounts.Add(MTAAccount, this);
 }