PlaceframeApiClient 0.1.3

dotnet add package PlaceframeApiClient --version 0.1.3
                    
NuGet\Install-Package PlaceframeApiClient -Version 0.1.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PlaceframeApiClient" Version="0.1.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PlaceframeApiClient" Version="0.1.3" />
                    
Directory.Packages.props
<PackageReference Include="PlaceframeApiClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PlaceframeApiClient --version 0.1.3
                    
#r "nuget: PlaceframeApiClient, 0.1.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PlaceframeApiClient@0.1.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PlaceframeApiClient&version=0.1.3
                    
Install as a Cake Addin
#tool nuget:?package=PlaceframeApiClient&version=0.1.3
                    
Install as a Cake Tool

PlaceframeApiClient - the C# library for the Placeframe

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

This C# SDK is automatically generated by the OpenAPI Generator project:

  • API version: 0.1.0
  • SDK version: 0.1.3
  • Generator version: 7.19.0
  • Build package: org.openapitools.codegen.languages.CSharpClientCodegen

<a id="frameworks-supported"></a>

Frameworks supported

  • .NET Core >=1.0
  • .NET Framework >=4.6
  • Mono/Xamarin >=vNext

<a id="dependencies"></a>

Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

Install-Package Newtonsoft.Json
Install-Package JsonSubTypes

<a id="installation"></a>

Installation

Generate the DLL using your preferred tool (e.g. dotnet build)

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using PlaceframeApiClient.Api;
using PlaceframeApiClient.Client;
using PlaceframeApiClient.Model;

<a id="usage"></a>

Usage

To use the API client with a HTTP proxy, setup a System.Net.WebProxy

Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;

Connections

Each ApiClass (properly the ApiClient inside it) will create an instance of HttpClient. It will use that for the entire lifecycle and dispose it when called the Dispose method.

To better manager the connections it's a common practice to reuse the HttpClient and HttpClientHandler (see here for details). To use your own HttpClient instance just pass it to the ApiClass constructor.

HttpClientHandler yourHandler = new HttpClientHandler();
HttpClient yourHttpClient = new HttpClient(yourHandler);
var api = new YourApiClass(yourHttpClient, yourHandler);

If you want to use an HttpClient and don't have access to the handler, for example in a DI context in Asp.net Core when using IHttpClientFactory.

HttpClient yourHttpClient = new HttpClient();
var api = new YourApiClass(yourHttpClient);

You'll loose some configuration settings, the features affected are: Setting and Retrieving Cookies, Client Certificates, Proxy settings. You need to either manually handle those in your setup of the HttpClient or they won't be available.

Here an example of DI setup in a sample web project:

services.AddHttpClient<YourApiClass>(httpClient =>
   new PetApi(httpClient));

<a id="getting-started"></a>

Getting Started

using System.Collections.Generic;
using System.Diagnostics;
using System.Net.Http;
using PlaceframeApiClient.Api;
using PlaceframeApiClient.Client;
using PlaceframeApiClient.Model;

namespace Example
{
    public class Example
    {
        public static void Main()
        {

            Configuration config = new Configuration();
            config.BasePath = "http://localhost:8000";
            // create instances of HttpClient, HttpClientHandler to be reused later with different Api classes
            HttpClient httpClient = new HttpClient();
            HttpClientHandler httpClientHandler = new HttpClientHandler();
            var apiInstance = new DefaultApi(httpClient, config, httpClientHandler);
            var id = "id_example";  // Guid | 
            var body = null;  // string | 

            try
            {
                // CompleteLease
                apiInstance.CompleteLease(id, body);
            }
            catch (ApiException e)
            {
                Debug.Print("Exception when calling DefaultApi.CompleteLease: " + e.Message );
                Debug.Print("Status Code: "+ e.ErrorCode);
                Debug.Print(e.StackTrace);
            }

        }
    }
}

<a id="documentation-for-api-endpoints"></a>

Documentation for API Endpoints

All URIs are relative to http://localhost:8000

Class Method HTTP request Description
DefaultApi CompleteLease PUT /internal/leases/{id}/complete CompleteLease
DefaultApi CreateCaptureSession POST /capture_sessions CreateCaptureSession
DefaultApi CreateCaptureSessions POST /capture_sessions/bulk CreateCaptureSessions
DefaultApi CreateGraph POST /graph CreateGraph
DefaultApi CreateGroup POST /groups CreateGroup
DefaultApi CreateGroupsBatch POST /groups/batch CreateGroupsBatch
DefaultApi CreateLayer POST /layers CreateLayer
DefaultApi CreateLocalizationMap POST /localization-maps CreateLocalizationMap
DefaultApi CreateNode POST /nodes CreateNode
DefaultApi CreateNodesBatch POST /nodes/batch CreateNodesBatch
DefaultApi CreateReconstruction POST /reconstructions CreateReconstruction
DefaultApi DeleteCaptureSession DELETE /capture_sessions/{id} DeleteCaptureSession
DefaultApi DeleteGroups DELETE /groups DeleteGroups
DefaultApi DeleteLayers DELETE /layers DeleteLayers
DefaultApi DeleteLocalizationMap DELETE /localization-maps/{id} DeleteLocalizationMap
DefaultApi DeleteLocalizationMaps DELETE /localization-maps DeleteLocalizationMaps
DefaultApi DeleteNodes DELETE /nodes DeleteNodes
DefaultApi DeleteReconstruction DELETE /reconstructions/{id} DeleteReconstruction
DefaultApi DownloadCaptureSessionTar GET /capture_sessions/{id}/tar DownloadCaptureSessionTar
DefaultApi GetCaptureSession GET /capture_sessions/{id} GetCaptureSession
DefaultApi GetCaptureSessionReconstructions GET /capture_sessions/{id}/reconstructions GetCaptureSessionReconstructions
DefaultApi GetCaptureSessionRigConfig GET /capture_sessions/{id}/rig_config GetCaptureSessionRigConfig
DefaultApi GetCaptureSessions GET /capture_sessions GetCaptureSessions
DefaultApi GetGroups GET /groups GetGroups
DefaultApi GetLayers GET /layers GetLayers
DefaultApi GetLocalizationMap GET /localization-maps/{id} GetLocalizationMap
DefaultApi GetLocalizationMaps GET /localization-maps GetLocalizationMaps
DefaultApi GetNodes GET /nodes GetNodes
DefaultApi GetReconstruction GET /reconstructions/{id} GetReconstruction
DefaultApi GetReconstructionFramePoses GET /reconstructions/{id}/frame_poses GetReconstructionFramePoses
DefaultApi GetReconstructionLocalizationMap GET /reconstructions/{id}/localization_map GetReconstructionLocalizationMap
DefaultApi GetReconstructionManifest GET /reconstructions/{id}/manifest GetReconstructionManifest
DefaultApi GetReconstructionPoints GET /reconstructions/{id}/points GetReconstructionPoints
DefaultApi GetReconstructionStatus GET /reconstructions/{id}/status GetReconstructionStatus
DefaultApi GetReconstructions GET /reconstructions GetReconstructions
DefaultApi LocalizeImage POST /localize LocalizeImage
DefaultApi RequestLease POST /internal/leases/request RequestLease
DefaultApi UpdateCaptureSession PATCH /capture_sessions/{id} UpdateCaptureSession
DefaultApi UpdateCaptureSessions PATCH /capture_sessions UpdateCaptureSessions
DefaultApi UpdateGroups PATCH /groups UpdateGroups
DefaultApi UpdateLayers PATCH /layers UpdateLayers
DefaultApi UpdateLocalizationMap PATCH /localization-maps/{id} UpdateLocalizationMap
DefaultApi UpdateLocalizationMaps PATCH /localization-maps UpdateLocalizationMaps
DefaultApi UpdateNodes PATCH /nodes UpdateNodes
DefaultApi UploadCaptureSessionTar PUT /capture_sessions/{id}/tar UploadCaptureSessionTar

<a id="documentation-for-models"></a>

Documentation for Models

<a id="documentation-for-authorization"></a>

Documentation for Authorization

Endpoints do not require authorization.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.1.3 42 2/5/2026
0.1.2 39 2/5/2026
0.1.1 36 2/5/2026
0.1.0 35 2/5/2026

Minor update