WSU_EIT_CredentialsClient 1.0.14
See the version list below for details.
dotnet add package WSU_EIT_CredentialsClient --version 1.0.14
NuGet\Install-Package WSU_EIT_CredentialsClient -Version 1.0.14
<PackageReference Include="WSU_EIT_CredentialsClient" Version="1.0.14" />
paket add WSU_EIT_CredentialsClient --version 1.0.14
#r "nuget: WSU_EIT_CredentialsClient, 1.0.14"
// Install WSU_EIT_CredentialsClient as a Cake Addin #addin nuget:?package=WSU_EIT_CredentialsClient&version=1.0.14 // Install WSU_EIT_CredentialsClient as a Cake Tool #tool nuget:?package=WSU_EIT_CredentialsClient&version=1.0.14
WSU EIT Credentials Client
A .NET client used by WSU EIT to access credentials from our credential store.
Getting Started
Install the nuget package in your project. You will need the endpoint URL to the appropriate credentials system, the tenant code for the account being used, as well as a username and password.
The client includes both async and non-async methods for every method.
Code Example
var client = new Credentials.Client(string endpoint, string username, string password, string tenantCode, bool? useCaching = true);
// Get a single credential by name
var credByName = await client.GetCredentialsAsync("credential name");
// Get a single credential by ID
var credById = client.GetCredentialById(new Guid("00000000-0000-0000-0000-000000000000"));
// or
var credByIdAlt = client.GetCredential("00000000-0000-0000-0000-000000000000");
// Get all credentials
var creds = await client.GetAllCredentialsAsync();
// Generate a Random Password
var randomPassword = client.GeneratePassword();
var randomPasswordWithOptions = client.GeneratePassword(16, new Credentials.PasswordOptions { RequireSpecialCharacters = false });
Contact
For support and information contact Brad Wickett at brad.wickett@wsu.edu.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
-
net7.0
- Newtonsoft.Json (>= 13.0.3)
- System.Runtime.Caching (>= 7.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on WSU_EIT_CredentialsClient:
Package | Downloads |
---|---|
HelpDesk.Client
A client for interacting with the EIT help desk. |
GitHub repositories
This package is not used by any popular GitHub repositories.