markus / Rhino.Licensing / ISubscriptionLicensingService.cs @ 42d49521
이력 | 보기 | 이력해설 | 다운로드 (476 Bytes)
1 | 42d49521 | taeseongkim | using System.ServiceModel; |
---|---|---|---|
2 | |||
3 | namespace Rhino.Licensing |
||
4 | { |
||
5 | /// <summary> |
||
6 | /// Service contract of subscription server. |
||
7 | /// </summary> |
||
8 | [ServiceContract] |
||
9 | public interface ISubscriptionLicensingService |
||
10 | { |
||
11 | /// <summary> |
||
12 | /// Issues a leased license |
||
13 | /// </summary> |
||
14 | /// <param name="previousLicense"></param> |
||
15 | /// <returns></returns> |
||
16 | [OperationContract] |
||
17 | string LeaseLicense(string previousLicense); |
||
18 | } |
||
19 | } |