View on GitHub

GraphLite

A lightweight Graph API client for the user management and reporting needs of a AAD B2C tenant

Download this project as a .zip file Download this project as a tar.gz file

Applications

Basic operations on Applications

The GraphLite client allows the following operations on the Applications to facilitate management.

Get special B2C extensions application

Retrieves the default reserved application responsible for managing the B2C tenant.

// Get the reserved B2C application
var app = await client.GetB2cExtensionsApplicationAsync();

Get application’s extension properties

Retrieves custom user (extension) properties defined for an application in the B2C tenant.

// Get the reserved B2C application
var app = await client.GetB2cExtensionsApplicationAsync();

// Get the custom properties defined
var appId = app.ObjectId;
var extensionProperties = await client.GetApplicationExtensionsAsync(appId);

« Go back