Mercurial > silverbladetech
comparison SilverlightExampleApp/SilverlightExampleApp.Web/Secure/SecureService.svc.cs @ 49:502f5f365649
Initial load for Silverlight Example Application
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Tue, 17 Apr 2012 17:57:52 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
48:d617b54e1f47 | 49:502f5f365649 |
---|---|
1 using System; | |
2 using System.Linq; | |
3 using System.Runtime.Serialization; | |
4 using System.ServiceModel; | |
5 using System.ServiceModel.Activation; | |
6 | |
7 namespace SilverlightExampleApp.Web.Secure | |
8 { | |
9 [ServiceContract(Namespace = "")] | |
10 [SilverlightFaultBehavior] | |
11 [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] | |
12 public class SecureService | |
13 { | |
14 [OperationContract] | |
15 public void DoWork() | |
16 { | |
17 // Add your operation implementation here | |
18 return; | |
19 } | |
20 | |
21 // Add more operations here and mark them with [OperationContract] | |
22 } | |
23 } |