BizDoc.Core.DirectoryServices 6.7.11

There is a newer version of this package available.
See the version list below for details.
dotnet add package BizDoc.Core.DirectoryServices --version 6.7.11
NuGet\Install-Package BizDoc.Core.DirectoryServices -Version 6.7.11
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="BizDoc.Core.DirectoryServices" Version="6.7.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BizDoc.Core.DirectoryServices --version 6.7.11
#r "nuget: BizDoc.Core.DirectoryServices, 6.7.11"
#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 BizDoc.Core.DirectoryServices as a Cake Addin
#addin nuget:?package=BizDoc.Core.DirectoryServices&version=6.7.11

// Install BizDoc.Core.DirectoryServices as a Cake Tool
#tool nuget:?package=BizDoc.Core.DirectoryServices&version=6.7.11

Directory Services for BizDoc

Configure

IIS

Install and enable Window Authentication on IIS.

Setup web.config:

<system.web>
    <authentication mode="Windows" />
    <roleManager enabled="true" defaultProvider="AspNetWindowsTokenRoleProvider" />
</system.web>

Web App

In program.cs

builder.Services.AddBizDoc().
	AddDirectoryServices();

app.UseBizDoc().UseDirectoryServices();

By default, BizDoc uses Windows principal Sid as user identity. Set the IdentityType on the AddDirectoryServices options to override this behavior.

Set IdentityClaimType on AddBizDoc options to require BizDoc to use that pattern when authenticating user.

To list only users of a a domain group, set the UserGroupName option:

AddDirectoryServices(options => {
}, configure => {
});

Choose one of two patterns:

Employee Identity
builder.Service.AddBizDoc(options => {
    options.IdentityClaimType = DirectoryServicesClaimTypes.EmployeeId;
}).
AddDirectoryServices(options => {
}, configure => configure.UseEmployeeIdentityProvider());
SId
builder.Service.AddBizDoc(options => {
}).
AddDirectoryServices(options => {
}, configure => configure.UseIdentityTypeProvider());

Optionaly, an IdentityType can be provided to UseIdentityTypeProvider() in conjenction with the IdentityClaimType options of AddBizDoc():

Name
DirectoryServicesClaimTypes.EmployeeId
DirectoryServicesClaimTypes.SamAccountName
DirectoryServicesClaimTypes.UserPrincipalName
ClaimTypes.Email
ClaimTypes.Sid
ClaimTypes.X500DistinguishedName
builder.Service.AddBizDoc(options => {
    options.IdentityClaimType = ClaimTypes.X500DistinguishedName;
}).
AddDirectoryServices(options => {
}, configure => configure.UseIdentityTypeProvider(ClaimType.DistinguishedName));

BizDoc system privileges

Users who need to access BizDoc as administrators should have a dedicated domain group. Set the SystemGroupName option.

AddDirectoryServices(options => {
    SystemGroupName = "group-sid-here";
});

See Get-ADGroup on how to get the SID of a group.

You can set the SystemRole as an alternative to one of Windows built-in roles, such as machine administrator.

Angular

In /ClientApp

npm i @bizdoc/windows

In app.module.ts

@NgModule({
    imports: [
        BizDocModule.forRoot({}),
        WindowsModule.forRoot()
    ]
})
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  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. 
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
6.8.0 819 10/16/2022
6.7.17 785 11/8/2022
6.7.16 812 8/2/2022
6.7.15 822 7/26/2022
6.7.14 842 7/25/2022
6.7.13 814 7/25/2022
6.7.12 822 7/24/2022
6.7.11 860 7/20/2022
6.7.10 797 7/19/2022
6.7.9 812 7/19/2022
6.7.8 812 7/19/2022
6.7.7 869 7/17/2022
6.7.6 846 7/17/2022
6.7.1 828 7/14/2022
6.7.0 834 7/14/2022
6.6.1 868 7/3/2022
6.6.0 809 6/6/2022
6.5.0 862 5/24/2022
6.4.0 876 3/22/2022
6.3.0 851 2/10/2022
6.0.2 706 12/14/2021
6.0.1 703 11/13/2021
6.0.0 695 11/10/2021
5.3.2 704 10/14/2021
5.3.1 776 10/12/2021
5.3.0 745 10/12/2021
5.2.0 732 9/22/2021
5.1.5 767 8/10/2021
5.1.4 742 8/10/2021
5.1.3 724 7/15/2021
5.1.2 780 5/12/2021
5.1.1 704 4/1/2021
5.0.4 836 3/9/2021
5.0.3 772 2/13/2021
5.0.2 840 1/13/2021
5.0.0 874 12/31/2020
3.2.1 941 11/25/2020
3.2.0 858 11/25/2020
3.1.4 966 9/4/2020
3.1.3 1,043 1/16/2020
3.0.2 986 12/16/2019
3.0.0 977 11/11/2019
1.0.1 1,094 6/6/2019
1.0.0 1,103 5/26/2019