You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The C# binding uses HttpClient to manage connectivity and concurrency. By default, .NET sets the default connection limit to 2, which is the same as the Rosette API default limit. For Rosette API plans that allow for higher concurrency, the internal HTTP client will adjust automatically to the higher number. If a user chooses to provide their own HTTP client, no adjustment will be made. In this case it is up to the user to set `ServicePointManager.DefaultConnectionLimit` to the Rosette API concurrency level prior to instantiating the CAPI object.
@@ -111,11 +115,8 @@ For multithreaded operations, do not instantiate a new CAPI object for each thre
111
115
}
112
116
```
113
117
114
-
## API Documentation
115
-
See [documentation](http://rosette-api.github.io/csharp)
116
118
117
-
## Release Notes
118
-
Visit the [wiki](https://github.com/rosette-api/csharp/wiki/Release-Notes)
119
119
120
-
## Additional Information
121
-
Visit [Rosette API site](https://developer.rosette.com)
120
+
121
+
## Binding Developer Information
122
+
If you are modifying the binding code, please refer to the [developer README](https://github.com/rosette-api/csharp/tree/develop/DEVELOPER.md) file.
/// (POST)Categories Endpoint: Returns an ordered list of categories identified in the input. The categories are Tier 1 contextual categories defined in the QAG Taxonomy.
0 commit comments