コード例 #1
0
        public void Test_Start()
        {
            var launcher = new ipfsDaemonLauncher ();

            launcher.Start ();
            for (int i = 0; i < 20; i++) {
                Thread.Sleep (100);
                Console.Write (".");
            }
        }
コード例 #2
0
        public void Test_Start()
        {
            var launcher = new ipfsDaemonLauncher();

            launcher.Start();
            for (int i = 0; i < 20; i++)
            {
                Thread.Sleep(100);
                Console.Write(".");
            }
        }
コード例 #3
0
ファイル: ipfsClient.cs プロジェクト: CompulsiveCoder/ipfs-cs
        public Process StartDaemon()
        {
            if (!IsInit)
                throw new InvalidOperationException ("Call the \"Init\" function before calling \"StartDaemon\".");

            var launcher = new ipfsDaemonLauncher (IpfsDataPath);

            launcher.Start ();

            return null;
        }