markus / ConvertService / ServiceBase / Markus.Service.WcfService / Helper / ConvertService.cs @ 53c9637d
이력 | 보기 | 이력해설 | 다운로드 (599 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.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 ConvertService : IConvertService |
15 |
{ |
16 |
public string ConvertAdd(int value) |
17 |
{ |
18 |
return "Test"; |
19 |
} |
20 |
} |
21 |
} |