Force.com-Toolkit-for-NET icon indicating copy to clipboard operation
Force.com-Toolkit-for-NET copied to clipboard

The Force.com Toolkits for .NET provides an easy way for .NET developers to interact with the Force.com & Chatter REST APIs using native libraries.

Results 98 Force.com-Toolkit-for-NET issues
Sort by recently updated
recently updated
newest added
trafficstars

Any time I execute SearchAsync, I receive this error: Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.List1[System.Object]' because the type requires a JSON array (e.g. [1,2,3])...

When using RunJobAndPollAsync with multiple batches in one call, I've an occasional issue caused by (apparently) non-deterministic order of the results (order of batches). I'm sending a list of two...

Is anyone else having problems building the project because nuget says the referenced TargetingPack packages are missing? I'm starting to think that I'm going crazy - no amount of googling...

The [doc ](https://github.com/developerforce/Force.com-Toolkit-for-NET#creating-the-forceclient-or-bulkforceclient) shows BulkForceClient, but that class doesn't exist in the source code. Please update the same.

I've read https://github.com/wadewegner/Force.com-Toolkit-for-NET/issues/186, but I'm still having trouble setting a header. I've created an httpClient but how do I "pass it in" here, is this supported? As soon as I...

Hi Folks, We're using this .NET implementation for our SalesForce integration and just received this email from SF: _You are receiving this email because you’re an admin of an org...

With Salesforce default API There is an option to make composite requests to reduce the number of calls and also allow to roll back if one option fails. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_composite.htm Are...

As the `ForceClient` functions use `async` it would be good to pass a `CancellationToken` so any long running requests can be cancelled. The `CancellationToken` can be passed through to the...

It's nice to have cancellation of requests. Also `.ConfigureAwait(false)` fixed somewhere.

cla:missing

This method is vulnerable by soql (sql) injection as it forms a string without any proper encoding or validation. `public async Task QueryByIdAsync(string objectName, string recordId)` `var query = string.Format("SELECT...

bug