コード例 #1
0
ファイル: DokuFlexService.cs プロジェクト: dokuflex/Dokuflex
        public static string GetTicket()
        {
            var credentials = new Credentials();

            credentials.UserName = ConfigurationManager.GetValue(Resources.LoginEmailAddressKey);
            credentials.SetEncryptedPassword(ConfigurationManager.GetValue(Resources.LoginPasswordKey));

            return(DokuFlexService.Login(credentials));
        }
コード例 #2
0
 public string Login()
 {
     return(DokuFlexService.Login(_credentials));
 }