668
Chương 17: Sự hòa hợp với môi trường Windows
timer.Dispose();
timer = null;
}
protected override void OnPause() {
if (timer != null) {
EventLog.WriteEntry("ServiceExample pausing...");
timer.Stop();
}
}
protected override void OnContinue() {
if (timer != null) {
EventLog.WriteEntry("ServiceExample resuming...");
timer.Start();
}
}
public static void Main() {
// Tạo một thể hiện của lớp ServiceExample để ghi một
// entry vào nhật ký Application. Truyền đối tượng này
// cho phương thức tĩnh ServiceBase.Run.
ServiceBase.Run(new ServiceExample());
}
}
6.
6.
T o m t b cài đ t d ch v Windows
ạ ộ ộ
ặ ị
ụ
T o m t b cài đ t d ch v Windows
ạ ộ ộ
ặ ị
ụ
Bạn đã tạo một ứng dụng dịch vụ Windows và cần cài đặt nó.
Thừa kế lớp
System.Configuration.Install.Installer
để tạo một lớp cài đặt gồm
những thông tin cần thiết để cài đặt và cấu hình lớp dịch vụ của bạn. Sử dụng
công cụ Installutil.exe để thực hiện việc cài đặt.