Microsoft.Graph.Core 3.0.0-rc.5

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Microsoft.Graph.Core.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Microsoft.Graph.Core --version 3.0.0-rc.5
NuGet\Install-Package Microsoft.Graph.Core -Version 3.0.0-rc.5
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="Microsoft.Graph.Core" Version="3.0.0-rc.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Graph.Core --version 3.0.0-rc.5
#r "nuget: Microsoft.Graph.Core, 3.0.0-rc.5"
#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.
// Install Microsoft.Graph.Core as a Cake Addin
#addin nuget:?package=Microsoft.Graph.Core&version=3.0.0-rc.5&prerelease

// Install Microsoft.Graph.Core as a Cake Tool
#tool nuget:?package=Microsoft.Graph.Core&version=3.0.0-rc.5&prerelease

Microsoft Graph .NET Core Client Library

Build Status NuGet Version

Integrate the Microsoft Graph API into your .NET project!

The Microsoft Graph .NET Core Client Library contains core classes and interfaces used by Microsoft.Graph Client Library to send native HTTP requests to Microsoft Graph API. The core client library targets .NetStandard 1.1 and .Net Framework 4.5.

Installation via NuGet

To install the client library via NuGet:

  • Search for Microsoft.Graph.Core in the NuGet Library, or
  • Type Install-Package Microsoft.Graph.Core into the Package Manager Console.

Getting started

1. Register your application

Register your application to use Microsoft Graph API by following the steps at Register your application with the Microsoft identity platform.

2. Authenticate for the Microsoft Graph service

The Microsoft Graph .NET Client Library supports the use of TokenCredential classes in the Azure.Identity library.

You can read more about available Credential classes here and examples on how to quickly setup TokenCredential instances can be found here.

The recommended library for authenticating against Microsoft Identity (Azure AD) is MSAL.

For an example of authenticating a UWP app using the V2 Authentication Endpoint, see the Microsoft Graph UWP Connect Library.

3. Create a HttpClient object with an authentication provider

You can create an instance of HttpClient that is pre-configured for making requests to Microsoft Graph APIs using GraphClientFactory.

HttpClient httpClient = GraphClientFactory.Create( version: "beta");

For more information on initializing a client instance, see the library overview

4. Make requests to the graph

Once you have an authenticated HttpClient, you can begin to make calls to the service. The requests to the service follows our REST API syntax.

For example, to retrieve a user's default drive:

HttpRequestMessage requestMessage = new HttpRequestMessage(HttpMethod.Get, "me/drive");
HttpResponseMessage response = await httpClient.SendAsync(requestMessage);
if (response.IsSuccessStatusCode)
{
    string jsonResponse = await response.Content.ReadAsStringAsync();
}

To get the current user's root folder of their default drive:

HttpRequestMessage requestMessage = new HttpRequestMessage(HttpMethod.Get, "me/drive/root");
HttpResponseMessage response = await httpClient.SendAsync(requestMessage);
if (response.IsSuccessStatusCode)
{
    string jsonResponse = await response.Content.ReadAsStringAsync();
}

Documentation and resources

Notes

Install System.Runtime.InteropServices.RuntimeInformation before you install Microsoft.Graph >=1.3 if you are having an issue updating the package for a Xamarin solution. You may need to updated references to Microsoft.NETCore.UniversalWindowsPlatform to >=5.2.2 as well.

Issues

To view or log issues, see issues.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Other resources

Building library locally

If you are looking to build the library locally for the purposes of contributing code or running tests, you will need to:

  • Have the .NET Core SDK (> 1.0) installed
  • Run dotnet restore from the command line in your package directory
  • Run nuget restore and msbuild from CLI or run Build from Visual Studio to restore Nuget packages and build the project

License

Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT license. See Third Party Notices for information on the packages referenced via NuGet.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-android31.0 is compatible.  net6.0-ios was computed.  net6.0-ios16.1 is compatible.  net6.0-maccatalyst was computed.  net6.0-maccatalyst16.1 is compatible.  net6.0-macos was computed.  net6.0-macos13.0 is compatible.  net6.0-tvos was computed.  net6.0-windows was computed.  net6.0-windows7.0 is compatible.  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. 
.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 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  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 (37)

Showing the top 5 NuGet packages that depend on Microsoft.Graph.Core:

Package Downloads
Microsoft.Graph The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Microsoft Graph Client Library allows you to call Office 365, Azure AD and other Microsoft services through a single unified developer experience.

Microsoft.Graph.Auth The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Microsoft Graph Authentication Library implements authentication functionality used by Microsoft Graph Client Library. It provides a set of OAuth scenario-centric providers that implement Microsoft.Graph.IAuthenticationProvider and uses Microsoft Authentication Library (MSAL) to handle access token acquisition and storage.

Microsoft.Graph.Beta The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Microsoft Graph beta client library allows you to target the Microsoft Graph /beta endpoint. You can call Office 365, Azure AD and other Microsoft services through a single unified developer experience.

PnP.Framework

PnP Framework contains the PnP Provisioning engine and a ton of extension methods that will make you more productive while developing for Microsoft 365.

Microsoft.Graph.Communications.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Microsoft Graph Communications Client Core Library - This library builds on the Microsoft.Graph SDK to provide better support for the Communications APIs.

GitHub repositories (22)

Showing the top 5 popular GitHub repositories that depend on Microsoft.Graph.Core:

Repository Stars
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
pnp/PnP
SharePoint / Office 365 Developer Patterns and Practices - Archived older solutions. Please see https://aka.ms/m365pnp for updated guidance
pnp/PnP-PowerShell
SharePoint PnP PowerShell CmdLets
Kyrodan/KeeAnywhere
A cloud storage provider plugin for KeePass Password Safe
microsoftgraph/msgraph-sdk-powershell
Powershell SDK for Microsoft Graph
Version Downloads Last updated
3.1.10 0 3/28/2024
3.1.9 23,955 3/18/2024
3.1.8 314,591 2/16/2024
3.1.8-preview.1 65 2/27/2024
3.1.7 102,227 2/9/2024
3.1.6 374,561 1/23/2024
3.1.5 161,444 1/15/2024
3.1.4 16,212 1/9/2024
3.1.3 535,256 11/29/2023
3.1.2 606,082 11/15/2023
3.1.1 147,788 11/7/2023
3.1.0 286,082 10/24/2023
3.0.11 905,431 9/5/2023
3.0.11-preview.1 178 9/1/2023
3.0.10 627,390 8/8/2023
3.0.10-preview.1 562 7/13/2023
3.0.9 849,731 6/29/2023
3.0.9-preview.1 159 6/29/2023
3.0.8 7,737 6/27/2023
3.0.7 537,558 5/30/2023
3.0.6 1,111,773 4/18/2023
3.0.6-preview.1 153 4/18/2023
3.0.5 507,779 3/30/2023
3.0.4 141,813 3/27/2023
3.0.3 169,736 3/21/2023
3.0.2 149,365 3/13/2023
3.0.1 117,004 3/7/2023
3.0.0 146,478 2/28/2023
3.0.0-rc.6 7,636 2/9/2023
3.0.0-rc.5 4,222 1/26/2023
3.0.0-rc.4 226 1/25/2023
3.0.0-rc.3 2,687 1/18/2023
3.0.0-rc.2 1,740 1/11/2023
3.0.0-rc.1 9,964 12/16/2022
3.0.0-preview.19 237 12/14/2022
3.0.0-preview.18 353 12/6/2022
3.0.0-preview.17 100,690 11/23/2022
3.0.0-preview.16 110,560 10/18/2022
3.0.0-preview.15 410 10/3/2022
3.0.0-preview.14 5,179 9/28/2022
3.0.0-preview.13 2,308 9/6/2022
3.0.0-preview.12 407 8/29/2022
3.0.0-preview.11 69,515 7/20/2022
3.0.0-preview.10 2,272 7/13/2022
3.0.0-preview.9 21,425 6/21/2022
3.0.0-preview.8 1,967 6/9/2022
3.0.0-preview.7 1,496 5/31/2022
3.0.0-preview.6 5,741 5/20/2022
3.0.0-preview.5 11,755 5/4/2022
3.0.0-preview.4 3,849 4/13/2022
3.0.0-preview.3 318 4/12/2022
3.0.0-preview.2 1,118 4/1/2022
3.0.0-preview.1 2,131 3/22/2022
2.0.15 2,464,776 2/9/2023
2.0.14 6,903,567 10/11/2022
2.0.13 782,552 9/27/2022
2.0.13-preview.1 200 9/26/2022
2.0.12 2,671,368 8/24/2022
2.0.11 786,311 8/11/2022
2.0.10 779,578 7/20/2022
2.0.9 4,214,203 6/9/2022
2.0.8 4,858,386 2/18/2022
2.0.7 3,444,042 12/16/2021
2.0.6 286,977 12/2/2021
2.0.5 5,947,086 9/1/2021
2.0.4 48,489 8/24/2021
2.0.3 342,445 8/17/2021
2.0.2 498,394 8/11/2021
2.0.1 157,022 8/5/2021
2.0.0 488,394 7/22/2021
2.0.0-preview.14 2,394 7/7/2021
2.0.0-preview.13 41,701 6/18/2021
2.0.0-preview.12 38,840 6/7/2021
2.0.0-preview.11 58,479 5/7/2021
2.0.0-preview.10 38,001 4/21/2021
2.0.0-preview.9 23,430 4/1/2021
2.0.0-preview.8 38,150 3/17/2021
2.0.0-preview.7 556 3/2/2021
2.0.0-preview.6 416 2/24/2021
2.0.0-preview.5 298 2/24/2021
2.0.0-preview.4 5,088 1/6/2021
2.0.0-preview.3 27,239 4/29/2020
2.0.0-preview.2 2,369 4/9/2020
2.0.0-preview.1 15,983 3/9/2020
1.25.1 9,628,008 3/25/2021
1.25.1-preview.2 280 3/25/2021
1.25.1-preview.1 301 3/25/2021
1.25.0 253,308 3/25/2021
1.25.0-preview.2 316 3/20/2021
1.25.0-preview.1 520 3/17/2021
1.24.0 3,135,099 1/19/2021
1.24.0-preview.1 318 1/14/2021
1.23.0 2,749,334 11/26/2020
1.22.0 3,255,758 10/7/2020
1.22.0-preview.2 403 10/6/2020
1.22.0-preview.1 403 7/28/2020
1.21.0 2,447,195 7/28/2020
1.21.0-preview.1 3,048 6/19/2020
1.20.1 5,127,268 3/31/2020
1.20.0 6,758,725 2/5/2020
1.19.0 2,724,510 12/11/2019
1.18.0 1,334,838 10/10/2019
1.17.0 896,709 8/15/2019
1.16.0 122,210 7/3/2019
1.15.0 2,113,176 5/1/2019
1.14.1 148,346 3/29/2019
1.14.0 1,240,525 3/25/2019
1.12.0 1,328,365 10/31/2018
1.11.0 311,609 9/19/2018
1.10.0 409,786 7/6/2018
1.9.0 1,446,966 5/3/2018
1.8.1 217,416 3/23/2018
1.7.0 195,246 12/14/2017
1.6.2 168,192 9/26/2017
1.6.1 80,268 8/24/2017
1.6.0 48,110 8/8/2017
1.5.0 253,736 6/12/2017
1.4.0 292,089 5/10/2017
1.3.1 64,672 4/3/2017
1.3.0 207,482 11/8/2016
1.2.1 143,545 9/27/2016
1.1.1 11,938 8/8/2016
1.1.0 4,387 8/6/2016

- Use ConcurrentDictionary for the serialization registries.