In Java timer has following functions

timer.setInitialDelay(1000);

timer.setRepeats(false);

So,I their's analogue in .NET

timer.Interval = 1000;

timer.AutoReset = false;

Is it wright??