Atc.Microsoft.Graph.Client
1.0.35
dotnet add package Atc.Microsoft.Graph.Client --version 1.0.35
NuGet\Install-Package Atc.Microsoft.Graph.Client -Version 1.0.35
<PackageReference Include="Atc.Microsoft.Graph.Client" Version="1.0.35" />
paket add Atc.Microsoft.Graph.Client --version 1.0.35
#r "nuget: Atc.Microsoft.Graph.Client, 1.0.35"
// Install Atc.Microsoft.Graph.Client as a Cake Addin #addin nuget:?package=Atc.Microsoft.Graph.Client&version=1.0.35 // Install Atc.Microsoft.Graph.Client as a Cake Tool #tool nuget:?package=Atc.Microsoft.Graph.Client&version=1.0.35
Introduction
The library provides a convenient abstraction layer over the Microsoft Graph SDK, simplifying interactions with Microsoft Graph APIs. By wrapping the Microsoft Graph SDK, the library offers a consistent and simplified interface, handling complexities like paging and error handling for you.
Table of Contents
- Introduction
- Table of Contents
- Atc.Microsoft.Graph.Client
- Sample Project
- Requirements
- How to Contribute
Atc.Microsoft.Graph.Client
Services
The services provided in the Atc.Microsoft.Graph.Client
package are designed to facilitate seamless interaction with various Microsoft services through the Graph API. These services are essential for applications that need to manage and retrieve data efficiently from OneDrive, Outlook, SharePoint, Teams, User Management etc. By leveraging these services, applications can ensure robust and secure handling of data, integrating comprehensive functionalities directly into the application's workflow. Each service supports efficient querying of data, supporting expand, filter, and select query parameters to tailor the data retrieval process.
OneDriveGraphService
The IOneDriveGraphService
is essential for applications that require efficient management of OneDrive resources, including retrieving and managing drives and drive items, tracking changes with delta tokens, and downloading files. This service ensures robust and secure handling of OneDrive data, integrating OneDrive capabilities directly into the application's workflow.
OutlookGraphService
The IOutlookGraphService
is essential for applications that need to manage and retrieve Outlook mail data, such as mail folders, messages, and file attachments. It enables efficient querying of mail folders and messages, supports the use of delta tokens for tracking changes, and ensures secure handling of email data, enhancing email management within the application's ecosystem.
SharepointGraphService
The ISharepointGraphService
is essential for applications that need to manage SharePoint sites and subscriptions effectively. It provides capabilities for retrieving site information, setting up and managing subscriptions, and handling subscription renewals and deletions, ensuring robust and efficient integration of SharePoint functionalities within the application's environment.
TeamsGraphService
The ITeamsGraphService is essential for applications that need to retrieve and manage information about Teams. It allows for efficient querying of Teams data, enhancing collaboration and communication capabilities within the application's ecosystem.
UsersGraphService
The IUsersGraphService
is essential for applications that need to retrieve and manage information about users. It allows for efficient querying of user data, ensuring robust and efficient integration of user management functionalities within the application's environment.
Wire-Up Using ServiceCollection Extensions
To seamlessly integrate the Graph services into your application, you can utilize the provided ServiceCollection
extension methods. These methods simplify the setup process and ensure that the Graph services are correctly configured and ready to use within your application's service architecture.
The methods ensure that the Graph services are added to the application's service collection and configured according to the specified parameters, making them available throughout your application via dependency injection.
The configuration example below utilize the application's settings (typically defined in appsettings.json) to configure the Graph Services by calling the overload that accepts GraphServiceOptions
and implicitly configures the GraphServiceClient utilizing a ClientSecretCredential.
Options Available in the Extensions Class
The ServiceCollectionExtensions
class provides several methods to add and configure the Graph services in your application:
AddMicrosoftGraphServices(GraphServiceClient? graphServiceClient = null)
Adds the GraphServiceClient to the service collection, optionally using a provided GraphServiceClient instance. If no instance is provided, one must be available in the service provider when this service is resolved.
AddMicrosoftGraphServices(TokenCredential tokenCredential, string[]? scopes = null)
Adds the GraphServiceClient to the service collection using the provided TokenCredential for authentication. Optional scopes can also be specified.
AddMicrosoftGraphServices(GraphServiceOptions graphServiceOptions, string[]? scopes = null)
Adds the GraphServiceClient to the service collection using the provided GraphServiceOptions. This method ensures the GraphServiceClient is configured with a ClientSecretCredential based on the specified options.
Setup with ServiceCollection
public void ConfigureServices(IServiceCollection services)
{
var graphServiceOptions = new GraphServiceOptions
{
TenantId = "your_tenant_id",
ClientId = "your_client_id",
ClientSecret = "your_client_secret",
};
services.AddMicrosoftGraphServices(graphServiceOptions);
}
Sample Project
A sample is included, demonstrating how to configure and use the Microsoft Graph services.
Requirements
How to contribute
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. |
-
net8.0
- Atc (>= 2.0.472)
- Azure.Identity (>= 1.11.3)
- Microsoft.Extensions.Http.Resilience (>= 8.5.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
- Microsoft.Graph (>= 5.53.0)
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 |
---|---|---|
1.0.35 | 90 | 5/18/2024 |