VOOZH about

URL: https://www.nuget.org/packages/Infsoft.WPE.App.Services/0.11.15

⇱ NuGet Gallery | Infsoft.WPE.App.Services 0.11.15




👁 Image
Infsoft.WPE.App.Services 0.11.15

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Infsoft.WPE.App.Services --version 0.11.15
 
 
NuGet\Install-Package Infsoft.WPE.App.Services -Version 0.11.15
 
 
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="Infsoft.WPE.App.Services" Version="0.11.15" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Infsoft.WPE.App.Services" Version="0.11.15" />
 
Directory.Packages.props
<PackageReference Include="Infsoft.WPE.App.Services" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Infsoft.WPE.App.Services --version 0.11.15
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Infsoft.WPE.App.Services, 0.11.15"
 
 
#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.
#:package Infsoft.WPE.App.Services@0.11.15
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Infsoft.WPE.App.Services&version=0.11.15
 
Install as a Cake Addin
#tool nuget:?package=Infsoft.WPE.App.Services&version=0.11.15
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Workplace Experience (WPE) Services library

This library provides the interfaces of all publicly available services, which can be used in an app implementation.

Services

  • Provides an interface for the delegating handler to cache requests.
  • Provides access to settings synced across platforms.
  • Provides access to global app settings like language.
  • Provides the possibility to set a renderFragemnt as child content in the minimal navBar.
  • Provides the timeZone information based on subscriptions.
  • Allows the application to track analytics events.
  • Allows to respond to push notifications.
  • Allows to query or update the handled state of notifications.
  • Allows to query whether a user has accepted a specific terms and conditions entry.
  • Provides an interface to show toast notifications with configurable content, style, and behavior.
  • Provides an interface to show dialogs with customizable titles, messages, buttons, and display options.

Delegating handlers

Additionally two delegating handlers are defined.

These serve to use the caching service via and add common headers to every request .

Examples

IToastService

var config = ToastConfig.WithTitle("Data Saved")
 .WithSubTitle("Your changes were successfully stored.") // Optional: subtitle text
 .WithIcon("check-circle-36") // Optional: icon name or URL
 .WithCloseButton(true) // Optional: show close button
 .CloseAfter(3000) // Optional: auto-close after milliseconds
 .WithAlignment(ToastConfigAlignment.TopRight) // Optional: position on screen
 .WithColor(ToastConfigColor.Green); // Optional: predefined color
 // .WithCustomColor("#00FF99") // Optional: use custom HEX instead
 // .NotSelfClosing() // Optional: require manual close

ToastService.Show(config);

IDialogService

var buttons = new List<DialogOptionsButton>
{
 DialogOptionsButton.WithText("Submit")
 .OnClicked(() => DeleteBooking(lockerItem.Item1, lockerItem.Item2))
 .AsPrimary(),

 DialogOptionsButton.WithText("Cancel")
 .AsSecondary()
};

// Create a dialog configuration using the fluent API
var config = DialogOptions.WithTitle("Open locker")
 .WithDescription("Are you sure you want to open this locker?") // Optional: add one or more message lines
 .WithIcon("delete-36") // Optional: icon name or URL
 .WithButtons(buttons) // Optional: custom button list
 .DisableBackgroundClose(); // Optional: disable closing by clicking outside

DialogService.Show(config);
Product Versions Compatible and additional computed target framework versions.
.NET net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Infsoft.WPE.App.Services:

Package Downloads
Infsoft.WPE.App.UIComponents

Basic components for developing modules used in infsoft's LocAware One application

Infsoft.WPE.App.Authentication.Base

Base authentication library used in platform dependent auth libraries (Infsoft.WPE.App.Authentication.Web and Infsoft.WPE.App.Authentication.Maui) for infsoft's LocAware One application

Infsoft.WPE.App.Layout

Provides components to unify the app layout

Infsoft.WPE.App.Authentication.Native

Native authentication library for infsoft's Workplace Experience application

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.3.1 211 6/3/2026
2.3.0 516 5/28/2026
2.2.2 417 4/29/2026
2.2.1 377 4/8/2026
2.2.0 134 4/1/2026
2.1.4 113 4/1/2026
2.1.3 127 3/31/2026
2.1.2 124 3/30/2026
2.1.1 121 3/30/2026
2.1.0 120 3/26/2026
2.0.2 169 2/2/2026
2.0.1 807 1/20/2026
2.0.0 326 1/19/2026
0.11.17 262 1/14/2026
0.11.16 900 12/3/2025
0.11.15 704 12/2/2025
0.11.14 376 11/13/2025
0.11.13 232 11/7/2025
0.11.12 207 11/7/2025
0.11.11 238 11/6/2025
Loading failed