ArcGIS.PCL 4.0.0

There is a newer version of this package available.
See the version list below for details.

Requires NuGet 2.8.1 or higher.

dotnet add package ArcGIS.PCL --version 4.0.0
NuGet\Install-Package ArcGIS.PCL -Version 4.0.0
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="ArcGIS.PCL" Version="4.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ArcGIS.PCL --version 4.0.0
#r "nuget: ArcGIS.PCL, 4.0.0"
#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 ArcGIS.PCL as a Cake Addin
#addin nuget:?package=ArcGIS.PCL&version=4.0.0

// Install ArcGIS.PCL as a Cake Tool
#tool nuget:?package=ArcGIS.PCL&version=4.0.0

ArcGIS.PCL can be used to call ArcGIS Server resources, including those from Portal for ArcGIS and ArcGIS Online. The resources can be secure or unsecure and the ArcGIS Online token service and OAuth token service are supported.

Supports the following as typed operations:

• CheckGenerateToken - create a token automatically via an ITokenProvider
• Query<T> - query a layer by attribute and / or spatial filters
• QueryForCount - only return the number of results for the query operation
• QueryForIds - only return the ObjectIds for the results of the query operation
• Find - search across n layers and fields in a service
• ApplyEdits<T> - post adds, updates and deletes to a feature service layer
• Geocode - single line of input to perform a geocode using a custom locator or the Esri world locator
• Suggest - lightweight geocode operation that only returns text results, commonly used for predictive searching
• ReverseGeocode - find location candidates for a input point location
• Simplify<T> - alter geometries to be topologically consistent
• Project<T> - convert geometries to a different spatial reference
• Buffer<T> - buffers geometries by the distance requested
• DescribeSite - returns a url for every service discovered, for ArcGISOnline or Portal this returns the hsted feature services for a user
• Ping - verify that the server can be accessed
• PublicKey - admin operation to get public key used for encryption of token requests
• ServiceStatus - admin operation to get the configured and actual status of a service

Also supports converting GeoJSON <-> ArcGIS Features.

Works with .NET for Windows Store apps, .NET framework 4 and higher, Windows Phone 8 and higher, Xamarin Android and Xamarin iOS.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  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 monoandroid10 is compatible. 
MonoTouch monotouch10 is compatible. 
Windows Phone wp8 is compatible.  wp81 was computed. 
Windows Store win8 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on ArcGIS.PCL:

Package Downloads
ArcGIS.PCL.JsonDotNetSerializer

Json.NET implementation of an ISerializer to use with ArcGIS.PCL. To use just call JsonDotNetSerializer.Init().

ArcGIS.PCL.JsonDotNetSerializer.Source

Json.NET source code implementation of an ISerializer to use with ArcGIS.PCL. To use just call JsonDotNetSerializer.Init().

ArcGIS.PCL.XamarinMaps

Extensions for converting ArcGIS features into their Xamarin.Forms.Maps equivalent. Works with Windows Phone 8 and higher, Xamarin Android and Xamarin iOS.

ScriptCs.ArcGIS

A ScriptCs script pack for ArcGIS.PCL.

ArcGIS.PCL.ServiceStackSerializer.Source

ServiceStack.Text source code implementation of an ISerializer to use with ArcGIS.PCL. To use just call ServiceStackSerializer.Init().

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on ArcGIS.PCL:

Repository Stars
scriptcs/scriptcs-samples
Sample usages of scriptcs
Version Downloads Last updated
6.0.0-beta-3 1,578 3/23/2017
6.0.0-beta-2 1,343 3/22/2017
6.0.0-beta-1 1,380 3/21/2017
5.9.0 13,855 3/19/2017
5.8.0 2,665 9/19/2016
5.7.0 1,922 9/1/2016
5.6.1 2,300 8/2/2016
5.6.0 2,004 7/2/2016
5.5.0 1,910 7/2/2016
5.4.0 1,923 7/1/2016
5.3.0 1,941 6/30/2016
5.2.0 2,070 6/29/2016
5.1.0 2,542 4/9/2015
5.0.0 3,073 11/20/2014
4.1.1 5,799 9/2/2014
4.0.0 4,223 6/15/2014
3.2.2 3,025 5/29/2014
3.2.1 2,249 5/19/2014
3.2.0 2,131 5/19/2014
3.1.0 2,745 5/12/2014
3.0.0 2,158 4/9/2014
2.2.3 2,038 11/27/2013
2.2.2 1,931 11/27/2013
2.2.1 1,927 11/26/2013
2.2.0 1,894 11/19/2013
2.1.0 1,925 10/28/2013
2.0.0 1,913 8/29/2013
1.2.0 1,873 8/22/2013
1.1.1 1,912 8/5/2013
1.1.0 1,933 8/5/2013
1.0.1 2,008 7/18/2013

Added automatic encryption of tokens if supported by the server
Added service status admin operation
Added public key admin operation      
Added DescribeSite for ArcGISOnline gateway - returns the hosted feature services for the user
Added operation overloads for accepting a CancellationToken

Breaking changes
- removed Silverlight specific project
- changed ArcGISServerOperation signature
- DescribeSite returns different response, has more data
- ITokenProvider now has a cryptoprovider and username, CheckGenerateToken now takes a CancellationToken as an input parameter
- Use cancellation token rather than cancellation token source for default operations