Enigmatry.Entry.GraphApi 9.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Enigmatry.Entry.GraphApi --version 9.4.0
                    
NuGet\Install-Package Enigmatry.Entry.GraphApi -Version 9.4.0
                    
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="Enigmatry.Entry.GraphApi" Version="9.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Enigmatry.Entry.GraphApi" Version="9.4.0" />
                    
Directory.Packages.props
<PackageReference Include="Enigmatry.Entry.GraphApi" />
                    
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 Enigmatry.Entry.GraphApi --version 9.4.0
                    
#r "nuget: Enigmatry.Entry.GraphApi, 9.4.0"
                    
#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 Enigmatry.Entry.GraphApi@9.4.0
                    
#: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=Enigmatry.Entry.GraphApi&version=9.4.0
                    
Install as a Cake Addin
#tool nuget:?package=Enigmatry.Entry.GraphApi&version=9.4.0
                    
Install as a Cake Tool

Graph API Building Block

Building Block for using the Microsoft AD Graph API

Registration

You can use the AppAddGraphApi extension method on IServiceCollection to register a scoped inastance of GraphServiceClient:

 public void ConfigureServices(IServiceCollection services)
    {
        ...
        services.AppAddGraphApi(_configuration);
    }

Configuration

Example:

  "App": {
    
    "GraphApi": {
      "Enabled": true,
      "TenantId": "AZURE_AD_TENANT_ID",
      "ClientId": "APP_REGISTRATION_CLIENT_ID",
      "ClientSecret": "APP_REGISTRATION_CLIENT_SECRET",
      "PasswordPolicies": "OPTIONAL_LIST_PASSWORD_POLICIES"
    },
  • Only TenantId, ClientId and ClientSecret are used to construct the GraphServiceClient
  • Enabled can be used how you see fit, it is not used by the building block.
  • PasswordPolicies can be used to supply a list of Password policies. Used by some of the GraphServiceClient extensions.

GraphServiceClient Extensions

The Building Block also contains a number of extension methods for GraphServiceClient:

  • GetUserById
  • GetUserByIssuerAssignedId
  • GetUsers
  • GetUserPhoto
  • AddUser
  • UpdateUser
  • UpdateUserPassword
  • UpdateUserSignInEmailAddress
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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. 
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
9.5.0 106 1/26/2026
9.4.0 1,107 12/22/2025
9.3.1-preview.3 251 12/18/2025
9.3.1-preview.1 503 11/25/2025
9.3.0 293 11/10/2025
9.2.0 739 9/24/2025
9.1.1-preview.5 215 8/8/2025
9.1.1-preview.4 148 6/27/2025
9.1.1-preview.3 171 6/4/2025
9.1.0 1,208 6/3/2025
9.0.1-preview.8 179 5/26/2025
9.0.1-preview.7 249 5/13/2025
9.0.1-preview.6 163 5/9/2025
9.0.1-preview.5 164 5/7/2025
9.0.1-preview.4 163 4/30/2025
8.3.1-preview.1 140 12/24/2025
8.3.0 191 12/23/2025
8.2.0 214 9/24/2025
8.1.1-preview.3 171 5/7/2025
8.1.1-preview.1 166 4/1/2025
Loading failed