File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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
77``` csharp
88ValidationParameters validationParameters = new ValidationParameters ();
99validationParameters .setProductNumber (" yourProductNumber" );
10- validationParameters .setLicenseeName (" yourLicenseeName" );
11- validationParameters .put (demoProductModuleNumber , " paramKey" , " paramValue" );
10+ validationParameters .put (" yourProductModuleNumber" , " paramKey" , " paramValue" );
1211
1312Context context = new Context ();
1413context .securityMode = SecurityMode .APIKEY_IDENTIFICATION ;
1514context .apiKey = " apiKeyNumber" ;
16- ValidationResult validationResult = LicenseeService .validate (context , licenseeNumber , validationParameters );
15+ ValidationResult validationResult = LicenseeService .validate (context , " yourLicenseeNumber " , validationParameters );
1716```
1817
1918## 📖 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
4747``` csharp
4848ValidationParameters validationParameters = new ValidationParameters ();
4949validationParameters .setProductNumber (" yourProductNumber" );
50- validationParameters .setLicenseeName (" yourLicenseeName" );
51- validationParameters .put (demoProductModuleNumber , " paramKey" , " paramValue" );
50+ validationParameters .put (" yourProductModuleNumber" , " paramKey" , " paramValue" );
5251
5352Context context = new Context ();
5453context .securityMode = SecurityMode .APIKEY_IDENTIFICATION ;
5554context .apiKey = " apiKeyNumber" ;
56- ValidationResult validationResult = LicenseeService .validate (context , licenseeNumber , validationParameters );
55+ ValidationResult validationResult = LicenseeService .validate (context , " yourLicenseeNumber " , validationParameters );
5756```
5857
5958# How to Contribute
You can’t perform that action at this time.
0 commit comments