|
GetProtectionDate |
Top Previous Next |
|
This function returns the date, when the software has been protected.
public static DateTime? IntelliProtector.GetProtectionDate();
Parameters
No parameters.
Return value
Returns date and time when software was protected.
Requirements
file: IntelliProtector.cs namespace: IntelliProtectorService;
Example
void ShowProtectionDate() { DateTime? protectionDate = IntelliProtector.GetProtectionDate(); if (protectionDate == null) MessageBox.Show("Software is not protected"); else MessageBox.Show(protectionDate.Value.ToString()); } |
| Copyright © 2011 intelliprotector.com |