markus / ConvertService / ServiceBase / Markus.Service.WcfService / MonitorService.cs @ 5feff9f0
이력 | 보기 | 이력해설 | 다운로드 (603 Bytes)
1 | 53c9637d | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Runtime.Serialization; |
||
5 | using System.ServiceModel; |
||
6 | using System.ServiceModel.Activation; |
||
7 | using System.Text; |
||
8 | |||
9 | namespace Markus.Service.IWcfService |
||
10 | { |
||
11 | |||
12 | //[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] |
||
13 | //[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, IncludeExceptionDetailInFaults = true)] |
||
14 | public class MonitorService : IMonitorService |
||
15 | { |
||
16 | public string ConvertAdd(int value) |
||
17 | { |
||
18 | return "Test"; |
||
19 | } |
||
20 | } |
||
21 | } |