Adsk.Platform.ModelDerivative
0.3.13
dotnet add package Adsk.Platform.ModelDerivative --version 0.3.13
NuGet\Install-Package Adsk.Platform.ModelDerivative -Version 0.3.13
<PackageReference Include="Adsk.Platform.ModelDerivative" Version="0.3.13" />
<PackageVersion Include="Adsk.Platform.ModelDerivative" Version="0.3.13" />
<PackageReference Include="Adsk.Platform.ModelDerivative" />
paket add Adsk.Platform.ModelDerivative --version 0.3.13
#r "nuget: Adsk.Platform.ModelDerivative, 0.3.13"
#:package Adsk.Platform.ModelDerivative@0.3.13
#addin nuget:?package=Adsk.Platform.ModelDerivative&version=0.3.13
#tool nuget:?package=Adsk.Platform.ModelDerivative&version=0.3.13
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.3.13)
- 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.3.13 | 32 | 3/19/2026 |
| 0.3.12 | 32 | 3/19/2026 |
| 0.3.11 | 31 | 3/19/2026 |
| 0.3.10 | 33 | 3/18/2026 |
| 0.3.9 | 75 | 3/17/2026 |
| 0.3.8 | 82 | 3/17/2026 |
| 0.3.7 | 81 | 3/12/2026 |
| 0.3.6 | 81 | 3/10/2026 |
| 0.3.5 | 75 | 3/8/2026 |
| 0.3.4 | 81 | 3/8/2026 |
| 0.3.3 | 80 | 3/6/2026 |
| 0.3.2 | 82 | 3/5/2026 |
| 0.3.1 | 84 | 3/2/2026 |
| 0.3.0 | 82 | 3/2/2026 |
| 0.2.9 | 101 | 2/11/2026 |
| 0.2.8 | 96 | 2/9/2026 |
| 0.2.7 | 95 | 2/9/2026 |
| 0.2.6 | 93 | 2/5/2026 |
| 0.2.5 | 95 | 2/5/2026 |
| 0.2.4 | 99 | 2/5/2026 |