예제 #1
0
파일: Example.cs 프로젝트: anukat2015/sones
        static void Main(string[] args)
        {
            //creating a new example instance
            var MyTagExample = new TagExample();

            //call the Run() method
            MyTagExample.Run();

            //Shutdown
            MyTagExample.Shutdown();
        }
예제 #2
0
        static void Main(string[] args)
        {
            //creating a new example instance
            var MyTagExample = new TagExample();

            //call the Run() method
            MyTagExample.Run();

            //Shutdown
            MyTagExample.Shutdown();
        }
예제 #3
0
파일: Example.cs 프로젝트: loubo/sones
        static void Main(string[] args)
        {
            //creating a new example instance
            var MyTagExample = new TagExample();

            //call the Run() method
            MyTagExample.Run();

            //shutdown the GraphDB
            MyTagExample.GraphDSServer.Shutdown(MyTagExample.SecToken);
        }