![]() |
VOOZH | about |
dotnet add package CallsignToolkit.CallbookLookup --version 1.0.0
NuGet\Install-Package CallsignToolkit.CallbookLookup -Version 1.0.0
<PackageReference Include="CallsignToolkit.CallbookLookup" Version="1.0.0" />
<PackageVersion Include="CallsignToolkit.CallbookLookup" Version="1.0.0" />Directory.Packages.props
<PackageReference Include="CallsignToolkit.CallbookLookup" />Project file
paket add CallsignToolkit.CallbookLookup --version 1.0.0
#r "nuget: CallsignToolkit.CallbookLookup, 1.0.0"
#:package CallsignToolkit.CallbookLookup@1.0.0
#addin nuget:?package=CallsignToolkit.CallbookLookup&version=1.0.0Install as a Cake Addin
#tool nuget:?package=CallsignToolkit.CallbookLookup&version=1.0.0Install as a Cake Tool
A collection of tools for amateur radio operators to look up and display calsign and callbook return information in a standardized manner
Option 1
using CallsignToolkit;
BaseLookup lookup = new HamCallDevLookup("w1aw");
lookup.PerformLookup();
Console.WriteLine(lookup.Serialize());
Option 2:
using CallsignToolkit;
BaseLookup lookup = new HamCallDevLookup();
(HamCallDevLookup)lookup.PerformLookup("w1aw");
Console.WriteLine(lookup.Serialize());
Option 3:
using CallsignToolkit;
HamCallDevLookup lookup = new("w1aw");
lookup.PerformLookup();
Console.WriteLine(lookup.Serialize());
Option 4:
using CallsignToolkit;
HamCallDevLookup lookup = new();
lookup.PerformLookup("w1aw");
Console.WriteLine(lookup.Serialize());
Example output:
{
"License": {
"DMRID": [
3109478,
310938
],
"FRN": 4511143,
"FileNumber": 9324023,
"LicenseKey": 780866,
"GrantDate": "2020-12-08T00:00:00",
"EffectiveDate": "2020-12-08T00:00:00",
"ExpirationDate": "2031-02-26T00:00:00",
"Callsign": "w1aw",
"LicenseClass": ""
},
"AmateurName": {
"FullName": "ARRL HQ OPERATORS CLUB",
"FirstName": "ARRL HQ OPERATORS CLUB",
"MiddleInitial": "",
"LastName": null,
"FullNameReverse": ""
},
"QSLMethods": {
"LastLOTWUpload": "0001-01-01T00:00:00",
"QSLManager": "",
"UseEQSL": false,
"UseLOTW": false,
"UsePaperQSL": false
},
"Address": {
"Address1": "225 MAIN ST",
"Address2": "",
"POBoxNumber": "",
"City": "NEWINGTON",
"State": "CT",
"PostalCode": "06111"
}
}
The base class is CallSignToolkit.LookupDetails. It is not intended to be used directly, as it does not have any lookup methods built in.
The base helper classes are objects to support serialization and standardization of the lookup properties. They are contained as objects on the base class, but could be used seperately if needed or desired.
None yet.
None yet.
Extends the base lookup class to provide a lookup method for the API provided by HamCall.dev. This API is free and loads quickly, but currently provides only US based callsign lookups.
Extends the base lookup class to provide a lookup method for the API provided by QRZ. This is a paid service, and provides callbook details for most countries offering amateur radio licenses.
Not yet implemented.
Not yet implemented.
Not yet implemented.
This work is licensed under the RPL v. 1.5, and welcomes use and upstream fixes.
Thank you to the following for their contributions to this project.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net7.0 net7.0 is compatible. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 676 | 8/20/2023 |