ShippingTracking 1.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package ShippingTracking --version 1.0.3                
NuGet\Install-Package ShippingTracking -Version 1.0.3                
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="ShippingTracking" Version="1.0.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ShippingTracking --version 1.0.3                
#r "nuget: ShippingTracking, 1.0.3"                
#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 ShippingTracking as a Cake Addin
#addin nuget:?package=ShippingTracking&version=1.0.3

// Install ShippingTracking as a Cake Tool
#tool nuget:?package=ShippingTracking&version=1.0.3                

tracking UPS, USPS and FedEx package.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ShippingTracking:

Package Downloads
IsatolTracker

Track packages from UPS, Fedex and Estafeta MX.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.8 1,709 8/11/2021
1.0.7 1,975 8/11/2021 1.0.7 is deprecated because it has critical bugs.
1.0.6 2,174 8/11/2021 1.0.6 is deprecated because it has critical bugs.
1.0.5 2,111 8/11/2021 1.0.5 is deprecated because it has critical bugs.
1.0.4 7,567 1/25/2018
1.0.3 2,403 10/5/2016
1.0.2 10,466 9/14/2016
1.0.1 2,849 9/14/2016
1.0.0 1,838 8/3/2016

tracking UPS, USPS and FedEx package.
Added Signature Name in the Tracking Reesult.

How to use:
using ShippingTrackingUtilities;

ConnectionString.SetupFedExCredential("YourFedexUserKey", "YourFedexPassword");
           ConnectionString.SetupUSPSCredential("YourUSPSUserID");
           ConnectionString.SetupUPSCredential("YourUPSLicenseNo");

TrackingUtilities utilities = new TrackingUtilities();

try
{
                     utilities.GetTrackingResult("010425715172328");
var result = utilities.ShippingResult;
}
catch (Exception ex)
{
   Console.WriteLine(ex.Message);
}