Execute() public method

Executes the job.
public Execute ( ) : void
return void
示例#1
0
 public void ExamplesCreateFileJob()
 {
     CreateFileJob job = new CreateFileJob();
     Assert.IsFalse(File.Exists(job.Path));
     job.Execute();
     Assert.IsTrue(File.Exists(job.Path));
 }