File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,12 @@ This minimal example shows how to trigger validation request using APIKey identi
7
7
``` csharp
8
8
ValidationParameters validationParameters = new ValidationParameters ();
9
9
validationParameters .setProductNumber (" yourProductNumber" );
10
- validationParameters .setLicenseeName (" yourLicenseeName" );
11
- validationParameters .put (demoProductModuleNumber , " paramKey" , " paramValue" );
10
+ validationParameters .put (" yourProductModuleNumber" , " paramKey" , " paramValue" );
12
11
13
12
Context context = new Context ();
14
13
context .securityMode = SecurityMode .APIKEY_IDENTIFICATION ;
15
14
context .apiKey = " apiKeyNumber" ;
16
- ValidationResult validationResult = LicenseeService .validate (context , licenseeNumber , validationParameters );
15
+ ValidationResult validationResult = LicenseeService .validate (context , " yourLicenseeNumber " , validationParameters );
17
16
```
18
17
19
18
## 📖 Wiki
Original file line number Diff line number Diff line change @@ -47,13 +47,12 @@ This minimal example shows how to trigger validation request using APIKey identi
47
47
``` csharp
48
48
ValidationParameters validationParameters = new ValidationParameters ();
49
49
validationParameters .setProductNumber (" yourProductNumber" );
50
- validationParameters .setLicenseeName (" yourLicenseeName" );
51
- validationParameters .put (demoProductModuleNumber , " paramKey" , " paramValue" );
50
+ validationParameters .put (" yourProductModuleNumber" , " paramKey" , " paramValue" );
52
51
53
52
Context context = new Context ();
54
53
context .securityMode = SecurityMode .APIKEY_IDENTIFICATION ;
55
54
context .apiKey = " apiKeyNumber" ;
56
- ValidationResult validationResult = LicenseeService .validate (context , licenseeNumber , validationParameters );
55
+ ValidationResult validationResult = LicenseeService .validate (context , " yourLicenseeNumber " , validationParameters );
57
56
```
58
57
59
58
# How to Contribute
You can’t perform that action at this time.
0 commit comments