프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / Rhino.Licensing / ISubscriptionLicensingService.cs @ 42d49521

이력 | 보기 | 이력해설 | 다운로드 (476 Bytes)

1
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
}
클립보드 이미지 추가 (최대 크기: 500 MB)