getAddress.Sdk
2.0.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package getAddress.Sdk --version 2.0.1
NuGet\Install-Package getAddress.Sdk -Version 2.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="getAddress.Sdk" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add getAddress.Sdk --version 2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: getAddress.Sdk, 2.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install getAddress.Sdk as a Cake Addin #addin nuget:?package=getAddress.Sdk&version=2.0.1 // Install getAddress.Sdk as a Cake Tool #tool nuget:?package=getAddress.Sdk&version=2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Find postal addresses for a UK postcode and optional house name/number
public void Find(GetAddress.Api api)
{
var result = await api.Find("TR19 7AA");
if (result.IsSuccess)
{
foreach(var address in result.Success.Addresses)
{
var line1 = address.Line1;
var line2 = address.Line2;
var line3 = address.Line3;
var line4 = address.Line4;
var buildName = address.BuildingName;
//....
}
}
else
{
var errorMessage = result.Failed.Message;
}
}
Autocomplete and lookup addresses
public void Autocomplete(GetAddress.Api api)
{
var autocompleteResult = await api.Autocomplete("High St");
if (autocompleteResult.IsSuccess)
{
foreach(var suggestion in autocompleteResult.Success.Suggestions)
{
var getResult = await api.Get(suggestion);
if (getResult.IsSuccess)
{
var address = getResult.Success;
var line1 = address.Line1;
var line2 = address.Line2;
var line3 = address.Line3;
var line4 = address.Line4;
var buildName = address.BuildingName;
//....
}
}
}
else
{
var errorMessage = autocompleteResult.Failed.Message;
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Newtonsoft.Json (>= 11.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.5.0 | 7,719 | 5/16/2024 |
3.4.3 | 109 | 5/16/2024 |
3.4.2 | 6,890 | 12/28/2023 |
3.4.1 | 6,226 | 9/22/2023 |
3.4.0 | 834 | 9/16/2023 |
3.3.2 | 4,033 | 8/23/2023 |
3.3.1 | 164 | 8/23/2023 |
3.3.0 | 162 | 8/22/2023 |
3.2.2 | 4,464 | 7/7/2023 |
3.2.1 | 192 | 7/6/2023 |
3.2.0 | 487 | 6/22/2023 |
3.1.0 | 1,263 | 4/24/2023 |
3.0.0 | 237 | 4/21/2023 |
2.7.0 | 23,334 | 3/14/2023 |
2.6.0 | 3,982 | 2/18/2023 |
2.5.0 | 14,370 | 12/12/2022 |
2.4.0 | 1,685 | 11/28/2022 |
2.3.0 | 8,081 | 10/20/2022 |
2.2.0 | 1,608 | 10/5/2022 |
2.1.4 | 8,627 | 7/6/2022 |
2.1.3 | 458 | 7/4/2022 |
2.1.2 | 13,110 | 5/2/2022 |
2.1.1 | 3,725 | 3/8/2022 |
2.1.0 | 426 | 3/8/2022 |
2.0.10 | 4,616 | 1/27/2022 |
2.0.9 | 626 | 1/26/2022 |
2.0.8 | 8,931 | 8/22/2021 |
2.0.7 | 370 | 8/22/2021 |
2.0.6 | 454 | 8/11/2021 |
2.0.5 | 333 | 8/11/2021 |
2.0.4 | 799 | 7/7/2021 |
2.0.3 | 774 | 6/15/2021 |
2.0.2 | 525 | 6/1/2021 |
2.0.1 | 388 | 5/28/2021 |
2.0.0 | 436 | 5/28/2021 |
2.0.0-rc1 | 246 | 5/28/2021 |
2.0.0-rc | 276 | 5/28/2021 |
2.0.0-beta | 257 | 5/11/2021 |
1.92.0 | 84,742 | 3/4/2021 |
1.91.7 | 10,605 | 1/8/2021 |
1.91.6 | 481 | 1/7/2021 |
1.91.5 | 484 | 1/7/2021 |
1.91.4 | 1,870 | 1/3/2021 |
1.91.3 | 500 | 12/28/2020 |
1.91.2 | 535 | 12/18/2020 |
1.91.1 | 526 | 12/17/2020 |
1.9.9999 | 1,576 | 12/11/2020 |
1.9.9998 | 503 | 12/10/2020 |
1.9.9997 | 472 | 12/10/2020 |
1.9.9996 | 470 | 12/9/2020 |
1.9.9995 | 3,809 | 11/22/2020 |
1.9.9994 | 472 | 11/22/2020 |
1.9.9993 | 493 | 11/22/2020 |
1.9.9992 | 508 | 11/20/2020 |
1.9.9991 | 498 | 11/20/2020 |
1.9.999 | 462 | 11/20/2020 |
1.9.998 | 589 | 11/12/2020 |
1.9.997 | 1,215 | 11/8/2020 |
1.9.996 | 877 | 11/5/2020 |
1.9.995 | 1,728 | 10/30/2020 |
1.9.994 | 530 | 10/30/2020 |
1.9.993 | 979 | 10/28/2020 |
1.9.992 | 713 | 10/24/2020 |
1.9.991 | 843 | 10/16/2020 |
1.9.990 | 522 | 10/16/2020 |
1.9.989 | 528 | 10/15/2020 |
1.9.988 | 472 | 10/15/2020 |
1.9.987 | 493 | 10/14/2020 |
1.9.986 | 969 | 10/11/2020 |
1.9.985 | 3,091 | 10/4/2020 |
1.9.984 | 526 | 10/2/2020 |
1.9.983 | 21,866 | 9/28/2020 |
1.9.982 | 681 | 9/26/2020 |
1.9.981 | 500 | 9/25/2020 |
1.9.98 | 541 | 9/24/2020 |
1.9.97 | 1,256 | 9/17/2020 |
1.9.96 | 647 | 9/16/2020 |
1.9.95 | 560 | 9/16/2020 |
1.9.94 | 3,506 | 9/9/2020 |
1.9.93 | 5,530 | 8/25/2020 |
1.9.92 | 12,289 | 8/17/2020 |
1.9.91 | 521 | 8/12/2020 |
1.9.9 | 1,463 | 8/7/2020 |
1.9.8 | 514 | 8/7/2020 |
1.9.6 | 16,484 | 7/12/2020 |
1.9.5 | 13,228 | 5/29/2020 |
1.9.4 | 544 | 5/29/2020 |
1.9.3 | 4,592 | 4/23/2020 |
1.9.2 | 565 | 4/21/2020 |
1.9.1 | 549 | 4/21/2020 |
1.9.0 | 2,069 | 4/3/2020 |
1.8.0 | 939 | 3/26/2020 |
1.7.6 | 4,252 | 3/6/2020 |
1.7.5 | 541 | 3/6/2020 |
1.7.4 | 5,017 | 1/3/2020 |
1.7.3 | 591 | 12/27/2019 |
1.7.2 | 655 | 12/17/2019 |
1.7.1 | 2,262 | 11/19/2019 |
1.7.0 | 723 | 11/17/2019 |
1.6.4 | 675 | 11/5/2019 |
1.6.3 | 616 | 11/1/2019 |
1.6.2 | 845 | 10/17/2019 |
1.6.1 | 792 | 10/15/2019 |
1.6.0 | 3,106 | 9/27/2019 |
1.5.9 | 639 | 9/25/2019 |
1.5.8 | 1,358 | 8/15/2019 |
1.5.7 | 3,275 | 5/9/2019 |
1.5.6 | 1,237 | 5/1/2019 |
1.5.5 | 969 | 4/10/2019 |
1.5.4 | 707 | 4/10/2019 |
1.5.3 | 6,083 | 3/25/2019 |
1.5.2 | 8,509 | 2/28/2019 |
1.5.1 | 667 | 2/26/2019 |
1.5.0 | 793 | 2/14/2019 |
1.4.9 | 770 | 2/11/2019 |
1.4.7 | 793 | 2/9/2019 |
1.4.6 | 745 | 2/8/2019 |
1.4.5 | 764 | 2/5/2019 |
1.4.4 | 1,156 | 12/31/2018 |
1.4.3 | 740 | 12/30/2018 |
1.4.2 | 754 | 12/30/2018 |
1.4.1 | 2,447 | 10/29/2018 |
1.4.0 | 10,391 | 9/4/2018 |
1.3.2 | 7,703 | 4/22/2018 |
1.2.6 | 1,194 | 3/2/2018 |
1.2.5 | 932 | 2/28/2018 |
1.2.4 | 1,313 | 2/20/2018 |
1.2.3 | 1,247 | 1/22/2018 |
1.2.2 | 13,180 | 9/25/2017 |
1.2.1 | 1,048 | 9/25/2017 |
1.1.2 | 973 | 9/21/2017 |
1.1.1 | 975 | 9/21/2017 |
1.1.0 | 986 | 9/17/2017 |
1.0.5 | 1,131 | 9/14/2017 |
1.0.4 | 1,148 | 8/21/2017 |
1.0.3 | 1,428 | 7/16/2017 |
1.0.2 | 1,335 | 7/10/2017 |
Error handle unexpected results