|
3442 | 3442 | 4x4 transformation matrix of the wrist3 (Tool) joint 6 |
3443 | 3443 | </summary> |
3444 | 3444 | </member> |
| 3445 | + <member name="T:UnderAutomation.UniversalRobots.License.LicenseInfo"> |
| 3446 | + <summary> |
| 3447 | + Information about a license key |
| 3448 | + </summary> |
| 3449 | + </member> |
| 3450 | + <member name="M:UnderAutomation.UniversalRobots.License.LicenseInfo.#ctor(System.String,System.String)"> |
| 3451 | + <summary> |
| 3452 | + Create a new LicenseInfo instance to retrieve informations about a pair of identifier/key |
| 3453 | + This class should not be used to register your product. Please use static function RegisterLicense to specify your license. |
| 3454 | + </summary> |
| 3455 | + <param name="licenseIdentifier">The name of your organization (null for trial version)</param> |
| 3456 | + <param name="licenseKey">The key, associated to the identifier, supplied by UnderAutomation (null for trial version)</param> |
| 3457 | + </member> |
| 3458 | + <member name="M:UnderAutomation.UniversalRobots.License.LicenseInfo.AssertIsLicensed"> |
| 3459 | + <summary> |
| 3460 | + Throw a InvalidLicenseException if the license is not valid |
| 3461 | + </summary> |
| 3462 | + </member> |
| 3463 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.LicenseKey"> |
| 3464 | + <summary> |
| 3465 | + The license key supplied by UnderAutomation (null for trial period) |
| 3466 | + </summary> |
| 3467 | + </member> |
| 3468 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.Product"> |
| 3469 | + <summary> |
| 3470 | + Commercial name of this .NET Software library |
| 3471 | + </summary> |
| 3472 | + </member> |
| 3473 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.EvaluationDaysLeft"> |
| 3474 | + <summary> |
| 3475 | + Remaining days of the trial period. Null if the product is licensed. It could be negative if the trial period is ended since several days. |
| 3476 | + </summary> |
| 3477 | + </member> |
| 3478 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.EvaluationStartDate"> |
| 3479 | + <summary> |
| 3480 | + The date the trial period starts. If the product is licensed, the date of the library first use. |
| 3481 | + </summary> |
| 3482 | + </member> |
| 3483 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.Licensee"> |
| 3484 | + <summary> |
| 3485 | + Name of your organisation |
| 3486 | + </summary> |
| 3487 | + </member> |
| 3488 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.TrialPeriodExpirationDate"> |
| 3489 | + <summary> |
| 3490 | + The date the product will expire. Null if the product is licensed. |
| 3491 | + </summary> |
| 3492 | + </member> |
| 3493 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.State"> |
| 3494 | + <summary> |
| 3495 | + The current license state |
| 3496 | + </summary> |
| 3497 | + </member> |
| 3498 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.ProductReleaseDate"> |
| 3499 | + <summary> |
| 3500 | + The date this version of the product was released. |
| 3501 | + </summary> |
| 3502 | + </member> |
| 3503 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.MaintenanceYears"> |
| 3504 | + <summary> |
| 3505 | + Number of maintenance years included in your license |
| 3506 | + </summary> |
| 3507 | + </member> |
| 3508 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.LicenseIssuedDate"> |
| 3509 | + <summary> |
| 3510 | + The date you get the license |
| 3511 | + </summary> |
| 3512 | + </member> |
| 3513 | + <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.MaintenanceExpirationDate"> |
| 3514 | + <summary> |
| 3515 | + The date your maintenance contract end and you no longer can use this license with newer versions. |
| 3516 | + </summary> |
| 3517 | + </member> |
| 3518 | + <member name="M:UnderAutomation.UniversalRobots.License.LicenseInfo.ToString"> |
| 3519 | + <summary> |
| 3520 | + A human description of the license |
| 3521 | + </summary> |
| 3522 | + </member> |
| 3523 | + <member name="T:UnderAutomation.UniversalRobots.License.LicenseState"> |
| 3524 | + <summary> |
| 3525 | + States that can take a license |
| 3526 | + </summary> |
| 3527 | + </member> |
| 3528 | + <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.None"> |
| 3529 | + <summary> |
| 3530 | + No license has been provided |
| 3531 | + </summary> |
| 3532 | + </member> |
| 3533 | + <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.Invalid"> |
| 3534 | + <summary> |
| 3535 | + The pair License Identifier and License Key are incompatible, you cannot use the library |
| 3536 | + </summary> |
| 3537 | + </member> |
| 3538 | + <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.Trial"> |
| 3539 | + <summary> |
| 3540 | + The library is in a trial period, you can use the library |
| 3541 | + </summary> |
| 3542 | + </member> |
| 3543 | + <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.ExtraTrial"> |
| 3544 | + <summary> |
| 3545 | + The library is in an extra trial period, you can use the library |
| 3546 | + </summary> |
| 3547 | + </member> |
| 3548 | + <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.Expired"> |
| 3549 | + <summary> |
| 3550 | + The trial period as expired, you no more can use the library |
| 3551 | + </summary> |
| 3552 | + </member> |
| 3553 | + <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.MaintenanceNeeded"> |
| 3554 | + <summary> |
| 3555 | + Your license does not allow you to use such a recent release. Please buy maintenance to use this version |
| 3556 | + </summary> |
| 3557 | + </member> |
| 3558 | + <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.Licensed"> |
| 3559 | + <summary> |
| 3560 | + Congratulations, the library is licensed. |
| 3561 | + </summary> |
| 3562 | + </member> |
| 3563 | + <member name="T:UnderAutomation.UniversalRobots.License.InvalidLicenseException"> |
| 3564 | + <summary> |
| 3565 | + Exception thrown while using the product if the license is not valid. |
| 3566 | + </summary> |
| 3567 | + </member> |
| 3568 | + <member name="P:UnderAutomation.UniversalRobots.License.InvalidLicenseException.LicenseInfo"> |
| 3569 | + <summary> |
| 3570 | + The license that causes this exception |
| 3571 | + </summary> |
| 3572 | + </member> |
3445 | 3573 | <member name="T:UnderAutomation.UniversalRobots.PrimaryInterface.AdditionalInfoPackageEventArgs"> |
3446 | 3574 | <summary> |
3447 | 3575 | Additional information |
@@ -33426,133 +33554,5 @@ |
33426 | 33554 | </summary> |
33427 | 33555 | <returns></returns> |
33428 | 33556 | </member> |
33429 | | - <member name="T:UnderAutomation.UniversalRobots.License.LicenseInfo"> |
33430 | | - <summary> |
33431 | | - Information about a license key |
33432 | | - </summary> |
33433 | | - </member> |
33434 | | - <member name="M:UnderAutomation.UniversalRobots.License.LicenseInfo.#ctor(System.String,System.String)"> |
33435 | | - <summary> |
33436 | | - Create a new LicenseInfo instance to retrieve informations about a pair of identifier/key |
33437 | | - This class should not be used to register your product. Please use static function RegisterLicense to specify your license. |
33438 | | - </summary> |
33439 | | - <param name="licenseIdentifier">The name of your organization (null for trial version)</param> |
33440 | | - <param name="licenseKey">The key, associated to the identifier, supplied by UnderAutomation (null for trial version)</param> |
33441 | | - </member> |
33442 | | - <member name="M:UnderAutomation.UniversalRobots.License.LicenseInfo.AssertIsLicensed"> |
33443 | | - <summary> |
33444 | | - Throw a InvalidLicenseException if the license is not valid |
33445 | | - </summary> |
33446 | | - </member> |
33447 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.LicenseKey"> |
33448 | | - <summary> |
33449 | | - The license key supplied by UnderAutomation (null for trial period) |
33450 | | - </summary> |
33451 | | - </member> |
33452 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.Product"> |
33453 | | - <summary> |
33454 | | - Commercial name of this .NET Software library |
33455 | | - </summary> |
33456 | | - </member> |
33457 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.EvaluationDaysLeft"> |
33458 | | - <summary> |
33459 | | - Remaining days of the trial period. Null if the product is licensed. It could be negative if the trial period is ended since several days. |
33460 | | - </summary> |
33461 | | - </member> |
33462 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.EvaluationStartDate"> |
33463 | | - <summary> |
33464 | | - The date the trial period starts. If the product is licensed, the date of the library first use. |
33465 | | - </summary> |
33466 | | - </member> |
33467 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.Licensee"> |
33468 | | - <summary> |
33469 | | - Name of your organisation |
33470 | | - </summary> |
33471 | | - </member> |
33472 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.TrialPeriodExpirationDate"> |
33473 | | - <summary> |
33474 | | - The date the product will expire. Null if the product is licensed. |
33475 | | - </summary> |
33476 | | - </member> |
33477 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.State"> |
33478 | | - <summary> |
33479 | | - The current license state |
33480 | | - </summary> |
33481 | | - </member> |
33482 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.ProductReleaseDate"> |
33483 | | - <summary> |
33484 | | - The date this version of the product was released. |
33485 | | - </summary> |
33486 | | - </member> |
33487 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.MaintenanceYears"> |
33488 | | - <summary> |
33489 | | - Number of maintenance years included in your license |
33490 | | - </summary> |
33491 | | - </member> |
33492 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.LicenseIssuedDate"> |
33493 | | - <summary> |
33494 | | - The date you get the license |
33495 | | - </summary> |
33496 | | - </member> |
33497 | | - <member name="P:UnderAutomation.UniversalRobots.License.LicenseInfo.MaintenanceExpirationDate"> |
33498 | | - <summary> |
33499 | | - The date your maintenance contract end and you no longer can use this license with newer versions. |
33500 | | - </summary> |
33501 | | - </member> |
33502 | | - <member name="M:UnderAutomation.UniversalRobots.License.LicenseInfo.ToString"> |
33503 | | - <summary> |
33504 | | - A human description of the license |
33505 | | - </summary> |
33506 | | - </member> |
33507 | | - <member name="T:UnderAutomation.UniversalRobots.License.LicenseState"> |
33508 | | - <summary> |
33509 | | - States that can take a license |
33510 | | - </summary> |
33511 | | - </member> |
33512 | | - <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.None"> |
33513 | | - <summary> |
33514 | | - No license has been provided |
33515 | | - </summary> |
33516 | | - </member> |
33517 | | - <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.Invalid"> |
33518 | | - <summary> |
33519 | | - The pair License Identifier and License Key are incompatible, you cannot use the library |
33520 | | - </summary> |
33521 | | - </member> |
33522 | | - <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.Trial"> |
33523 | | - <summary> |
33524 | | - The library is in a trial period, you can use the library |
33525 | | - </summary> |
33526 | | - </member> |
33527 | | - <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.ExtraTrial"> |
33528 | | - <summary> |
33529 | | - The library is in an extra trial period, you can use the library |
33530 | | - </summary> |
33531 | | - </member> |
33532 | | - <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.Expired"> |
33533 | | - <summary> |
33534 | | - The trial period as expired, you no more can use the library |
33535 | | - </summary> |
33536 | | - </member> |
33537 | | - <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.MaintenanceNeeded"> |
33538 | | - <summary> |
33539 | | - Your license does not allow you to use such a recent release. Please buy maintenance to use this version |
33540 | | - </summary> |
33541 | | - </member> |
33542 | | - <member name="F:UnderAutomation.UniversalRobots.License.LicenseState.Licensed"> |
33543 | | - <summary> |
33544 | | - Congratulations, the library is licensed. |
33545 | | - </summary> |
33546 | | - </member> |
33547 | | - <member name="T:UnderAutomation.UniversalRobots.License.InvalidLicenseException"> |
33548 | | - <summary> |
33549 | | - Exception thrown while using the product if the license is not valid. |
33550 | | - </summary> |
33551 | | - </member> |
33552 | | - <member name="P:UnderAutomation.UniversalRobots.License.InvalidLicenseException.LicenseInfo"> |
33553 | | - <summary> |
33554 | | - The license that causes this exception |
33555 | | - </summary> |
33556 | | - </member> |
33557 | 33557 | </members> |
33558 | 33558 | </doc> |
0 commit comments