UMT360.Client 5.27.2026.527

dotnet add package UMT360.Client --version 5.27.2026.527
                    
NuGet\Install-Package UMT360.Client -Version 5.27.2026.527
                    
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="UMT360.Client" Version="5.27.2026.527" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="UMT360.Client" Version="5.27.2026.527" />
                    
Directory.Packages.props
<PackageReference Include="UMT360.Client" />
                    
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 UMT360.Client --version 5.27.2026.527
                    
#r "nuget: UMT360.Client, 5.27.2026.527"
                    
#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 UMT360.Client@5.27.2026.527
                    
#: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=UMT360.Client&version=5.27.2026.527
                    
Install as a Cake Addin
#tool nuget:?package=UMT360.Client&version=5.27.2026.527
                    
Install as a Cake Tool

UMT360.Client

NH360 offers this CSOM (client side object model) library for clients using NH360.

Release notes

Programmability (CSOM interfaces)

Bug fixes

  • Fixed an issue where Milestone flag field values could be stored and exposed inconsistently between CSOM, the UI default value, and OData views.
  • Fixed an issue where Resources could be updated through CSOM with an invalid Enterprise Financial Type value.

Prerequisites

  • NH360 Portfolio Insights Product v6.20.1 deployed and configured
  • Credentials and permissions to access application
  • Visual Studio and .NET Framework v4.5

CSOM Client Test application

  1. Create a new console app.

  2. Open Tools > NuGet Package Manager > Manage NuGet Packages for Solution…

  3. Select Browse tab and type UMT360.Client in search box.

  4. Click on our package then look in the right side panel and select the project where you want to install the library.
    Click install button and review packages that will be installed, then accept the license.
    In a few seconds we are ready to go.

using System;
using UMT360.Client;
using UMT360.Client.Application;

namespace CSOMSAMPLE
{
    class Program
    {
        static void Main(string[] args)
        {

            TokenHelper.InitializeAppConfiguration(
                    "<client_id>",		            //clientid
                    "",		            			//clientSecret
                    "<realm>",			            //realm
                    "<issuer_id>",		            //issuerId
                    @"C:\<path>\certificate.pfx",   //Central Admin - Manage Apps
                    "<certificate_password>",       //certificate password
                    "AAD for UMT360Online"          //trusted provider name  
                );

            using (UMT360Context context = new UMT360Context("enter site url"))
            {
                context.AuthenticateWithClaims();
                FinancialEntity financialEntity = context.FinancialEntities.GetByGuid(new Guid("enter entity id"));
                context.Load(financialEntity);
                context.ExecuteQuery();
            }
        }
    }
}

`

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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
5.27.2026.527 102 5/29/2026
5.27.2026.422 117 4/24/2026
5.27.2026.226 141 2/26/2026
5.27.2025.1128 229 11/28/2025
5.27.2025.928 263 9/29/2025
5.27.2025.829 306 8/29/2025
5.27.2025.801 252 8/3/2025
5.27.2025.724 501 7/25/2025
5.27.2025.627 268 6/27/2025
5.27.2025.530 300 5/30/2025
5.27.2025.328 279 3/28/2025
5.27.2025.220 272 2/21/2025
5.27.2024.1129 257 11/29/2024
5.27.2024.1105 247 11/6/2024
5.27.2024.1024 245 10/25/2024
5.27.2024.926 254 9/27/2024
5.27.2024.830 278 8/30/2024
5.27.2024.725 249 7/26/2024
5.27.2024.627 259 6/28/2024
5.27.2024.524 294 5/24/2024
Loading failed

Bug fixes and new features.