Adsk.Platform.ModelDerivative
0.2.8
See the version list below for details.
dotnet add package Adsk.Platform.ModelDerivative --version 0.2.8
NuGet\Install-Package Adsk.Platform.ModelDerivative -Version 0.2.8
<PackageReference Include="Adsk.Platform.ModelDerivative" Version="0.2.8" />
<PackageVersion Include="Adsk.Platform.ModelDerivative" Version="0.2.8" />
<PackageReference Include="Adsk.Platform.ModelDerivative" />
paket add Adsk.Platform.ModelDerivative --version 0.2.8
#r "nuget: Adsk.Platform.ModelDerivative, 0.2.8"
#:package Adsk.Platform.ModelDerivative@0.2.8
#addin nuget:?package=Adsk.Platform.ModelDerivative&version=0.2.8
#tool nuget:?package=Adsk.Platform.ModelDerivative&version=0.2.8
Autodesk Model Derivative Service
The package Adsk.Platform.ModelDerivative provides a set of APIs to interact with the Autodesk Model Derivative Service.
Documentation
More information can be found here.
Installation
dotnet add package Adsk.Platform.ModelDerivative
Usage
See the QuickStart Guide for a general understanding.
The root object is ModelDerivativeClient. This object provides access to the Model Derivative APIs and the Helpers method.
Querying specific model properties
The Fetch Specific Properties endpoint needs a query to filter the properties to be returned. The query is a JSON object that can be created using the UntypedObject.
Here is an example of how to query the project attributes of an IFC model, using a helper method GetSpecificPropertiesAsync. Compared to the default endpoint, this method waits until the server completes the processing
using Autodesk.ModelDerivative;
using Autodesk.ModelDerivative.Helpers.Models;
public async Task<ParsedSpecificProperties> GetIFCprojectAttributes()
{
async Task<string> getAccessToken()
{
//return access token with your logic
}
var MDclient = new ModelDerivativeClient(Location.US, getAccessToken);
var fileURN = ""; // Replace with your file version urn, like 'urn:adsk.wipprod:fs.file:vf.w9MS3MDBQaat6ObHffTA?version=1'
var modelGuid = ""; // Replace with your model guid like 'c0337487-5b66-422b-a284-c273b424af54'
//The query in the body request is {"$in":["objectid",2]}"} which is equivalent to the following
var query = new UntypedObject(new Dictionary<string, UntypedNode> {
{ "$in",new UntypedArray(
[
new UntypedString("objectid"),
new UntypedInteger(2)
])
}
});
var properties = await MDclient.Helper.GetSpecificPropertiesAsync(
fileURN, modelGuid, query);
return properties;
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Adsk.Platform.HttpClient (>= 0.2.8)
- Microsoft.Kiota.Authentication.Azure (>= 1.13.1)
- Microsoft.Kiota.Bundle (>= 1.13.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.2.9 | 89 | 2/11/2026 |
| 0.2.8 | 83 | 2/9/2026 |
| 0.2.7 | 85 | 2/9/2026 |
| 0.2.6 | 84 | 2/5/2026 |
| 0.2.5 | 85 | 2/5/2026 |
| 0.2.4 | 88 | 2/5/2026 |
| 0.2.3 | 95 | 2/5/2026 |
| 0.2.2 | 90 | 2/3/2026 |
| 0.2.1 | 221 | 10/28/2025 |
| 0.2.0 | 206 | 10/28/2025 |
| 0.1.18 | 192 | 10/26/2025 |
| 0.1.17 | 144 | 9/6/2025 |
| 0.1.16 | 202 | 8/12/2025 |
| 0.1.15 | 163 | 8/9/2025 |
| 0.1.14 | 166 | 7/31/2025 |
| 0.1.13 | 158 | 7/31/2025 |
| 0.1.12 | 150 | 7/18/2025 |
| 0.1.11 | 165 | 6/27/2025 |
| 0.1.10 | 162 | 6/27/2025 |
| 0.1.9 | 252 | 6/9/2025 |