Beispiel #1
0
        public void Verify()
        {
            var t = new MsmqTask();

            t.QueueName  = "dk_test";
            t.ServerName = Environment.MachineName;


            var r = t.VerifyCanRun();
        }
Beispiel #2
0
        public void Execute()
        {
            var t = new MsmqTask();

            t.QueueName  = "dk_test";
            t.ServerName = Environment.MachineName;
            t.CreateIfItDoesNotExist();

            t.Execute();
        }