REST Service Calls for .NET - 1.0
Extension ID
com.castsoftware.dotnet.service
What’s new?
See Release Notes for more information.
Description
This extension provides support for some web services calls from C#.
Supported REST client libraries
Type | Library |
---|---|
Native | Windows.Web.Http.HttpClient System.Net.Http.HttpClient System.Net.HttpWebRequest |
Third-party | Refit RestSharp.RestClient - RestSharp.RestClient.Execute - RestSharp.RestClient.GetAsync - RestSharp.RestClient.PostAsync - … Flurl.Http |
Function Point, Quality and Sizing support
- Function Points (transactions): a green tick indicates that OMG Function Point counting and Transaction Risk Index are supported
- Quality and Sizing: a green tick indicates that CAST can measure size and that a minimum set of Quality Rules exist
Function Points (transactions) | Quality and Sizing |
---|---|
✅ | ❌ |
Compatibility
Release | Operating System | Supported |
---|---|---|
v3/8.4.x | Microsoft Windows / Linux | ✅ |
v2/8.3.x | Microsoft Windows | ✅ |
Dependencies with other extensions
The REST Service Calls for .NET extension requires that ≥ 1.3.4-funcrel or ≥ 1.4.1-funcrel of the .NET Analyzer is also installed and used in order to ensure the most complete set of results. This dependency is not automatically handled when downloading the REST Service Calls for .NET extension, therefore you must ensure that the .NET Analyzer is downloaded and installed before starting an analysis.
What results can you expect?
Features
This extension analyzes web service calls made from C# code through classic fluent APIs. For example with System.Net.Http.HttpClient:
using System;
using System.Net.Http;
class Main
{
void main()
{
var httpClient = new HttpClient();
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get,"hello/world");
httpClient.SendAsync(request);
}
}
Refit
Refit provides the means to call web services through interfaces with attributes. Therefore, analyzing:
using System.Threading.Tasks;
using Refit;
public interface IGitHubApi
{
[Get("/users/{user}")]
Task<string> GetUser(string user);
}
will create:
Objects
Icon | Description |
---|---|
![]() |
Dotnet Delete Resource Service |
![]() |
Dotnet Get Resource Service |
![]() |
Dotnet Post Resource Service |
![]() |
Dotnet Put Resource Service |
![]() |
Dotnet Patch Resource Service |
Rules
None.
Limitations
- When the code uses a custom URL builder, we cannot evaluate the URL.
- Configuration files are not taken into account