markus / KCOM_API / IActiveService.cs @ cf1cc862
이력 | 보기 | 이력해설 | 다운로드 (479 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Runtime.Serialization; |
5 |
using System.ServiceModel; |
6 |
using System.Text; |
7 |
|
8 |
namespace KCOM_API |
9 |
{ |
10 |
// 참고: "리팩터링" 메뉴에서 "이름 바꾸기" 명령을 사용하여 코드 및 config 파일에서 인터페이스 이름 "IActiveService"을 변경할 수 있습니다. |
11 |
[ServiceContract] |
12 |
public interface IActiveService |
13 |
{ |
14 |
[OperationContract] |
15 |
void A(); |
16 |
} |
17 |
} |