markus / license.iValidator / iValidator.cs @ master
이력 | 보기 | 이력해설 | 다운로드 (506 Bytes)
1 | 1305c420 | taeseongkim | using Rhino.Licensing; |
---|---|---|---|
2 | using System; |
||
3 | using System.Collections.Generic; |
||
4 | using System.Linq; |
||
5 | using System.ServiceModel; |
||
6 | using System.Text; |
||
7 | using System.Threading.Tasks; |
||
8 | |||
9 | namespace license |
||
10 | { |
||
11 | [ServiceContract] |
||
12 | public interface iLicenseService |
||
13 | { |
||
14 | [OperationContract] |
||
15 | string GetLicense(string key, string machine,string Process, string user); |
||
16 | |||
17 | [OperationContract] |
||
18 | bool Validate(string key, string license); |
||
19 | |||
20 | [OperationContract] |
||
21 | bool Upload(); |
||
22 | } |
||
23 | } |