일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- rs422
- tensorflow
- 티스토리 초대장
- MSSQL PYTHON
- 장고
- 파이썬
- 오라클
- windows10
- 자본주의
- Python
- MSSQL
- 윈도우10
- M2M
- scrapy
- Serial
- oracle
- MEAN Stack
- rs485
- MX Component
- Visual Studio Code
- 크롤링
- sql developer
- pymssql
- c#
- matplot
- 딥러닝
- 텐서플로우
- django
- vscode
- PYTHON MSSQL
Archives
- Today
- Total
안까먹을라고 쓰는 블로그
[C#] Service Project 만들기 본문
반응형
[Service 프로젝트 만들기]
[Service 프로젝트 생성 항목]
■ Service1.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Linq; using System.ServiceProcess; using System.Text; using System.Threading; namespace WindowsService1 { public partial class Service1 : ServiceBase { Thread ServiceThread = null; bool ThreadAlive = true; int ThreadCnt = 0; public Service1() { InitializeComponent(); } /// /// 서비스 시작 /// protected override void OnStart(string[] args) { ThreadAlive = true; ServiceThread = new Thread(new ThreadStart(Service_Function)); ServiceThread.Start(); } /// /// 서비스 중지 /// protected override void OnStop() { ThreadAlive = false; ServiceThread.Suspend(); } /// /// 실제 서비스 작업 함수 /// private void Service_Function() { while (ThreadAlive) { Thread.Sleep(100); ThreadCnt++; // CM.Log("Log", "Service Test - ThreadCnt : " + ThreadCnt.ToString()); } } } } | cs |
※ Service 등록 및 삭제는 "Window Service 등록/삭제" 게시물 참조
반응형
'Language > C#' 카테고리의 다른 글
[C#] 실행중인 Child Form 개수 설정 (0) | 2013.06.27 |
---|---|
[C#] NameSpace (0) | 2013.06.10 |
[C#] 비동기 통신관련 공부할것 (0) | 2013.04.29 |
[C#] delegate / Event / Thread (0) | 2012.12.26 |
[C#] 프로그램 중복실행 방지 (0) | 2012.12.11 |
Comments