コード例 #1
0
ファイル: Program.cs プロジェクト: tiernano/HubicTesting
 public static void BuildClient()
 {
     if (client == null || !client.IsAuthenticated())
     {
         client = new SwiftClient(cfg);
     }
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: kaibagoh/SwiftBox
 // build Swift client using the authentication
 // information in the configuration file
 private void BuildClient()
 {
     if (client == null)
     {
         client = new SwiftClient(cfg);
     }
 }