Xeku.ESign.Blazor 0.0.0.7

dotnet add package Xeku.ESign.Blazor --version 0.0.0.7
                    
NuGet\Install-Package Xeku.ESign.Blazor -Version 0.0.0.7
                    
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="Xeku.ESign.Blazor" Version="0.0.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Xeku.ESign.Blazor" Version="0.0.0.7" />
                    
Directory.Packages.props
<PackageReference Include="Xeku.ESign.Blazor" />
                    
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 Xeku.ESign.Blazor --version 0.0.0.7
                    
#r "nuget: Xeku.ESign.Blazor, 0.0.0.7"
                    
#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 Xeku.ESign.Blazor@0.0.0.7
                    
#: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=Xeku.ESign.Blazor&version=0.0.0.7
                    
Install as a Cake Addin
#tool nuget:?package=Xeku.ESign.Blazor&version=0.0.0.7
                    
Install as a Cake Tool

Xeku.ESign.Blazor

Blazor Server UI components and controllers for the Xeku.ESign electronic signature module.

繁體中文文檔

Features

  • SignAgent List View Controller: Enhanced UI for managing delegation records
  • SignStep Nested List View Controller: Interactive step management in nested views
  • ESign API Endpoint: RESTful API for external system integration

Architecture

graph TB
    subgraph "Presentation (#e1f5ff)"
        Controllers["View Controllers"]
        API["eSign API Endpoint"]
    end
    
    subgraph "Service/Logic (#fff4e1)"
        Core["Xeku.ESign"]
        StatusMgr["SignStatusManager"]
        StepMgr["SignStepManager"]
    end
    
    subgraph "Data/Entity (#e8f5e9)"
        SignStep["SignStep"]
        SignAgent["SignAgent"]
    end
    
    subgraph "External (#f3e5f5)"
        ExternalSys["External Systems"]
    end
    
    Controllers --> Core
    API --> StatusMgr
    API --> StepMgr
    ExternalSys --> API
    Core --> SignStep
    Core --> SignAgent
    
    style Controllers fill:#e1f5ff
    style API fill:#e1f5ff
    style Core fill:#fff4e1
    style StatusMgr fill:#fff4e1
    style StepMgr fill:#fff4e1
    style SignStep fill:#e8f5e9
    style SignAgent fill:#e8f5e9
    style ExternalSys fill:#f3e5f5

Installation

1. NuGet Package

dotnet add package Xeku.ESign.Blazor

2. Add Module Reference

// In your Blazor module constructor
RequiredModuleTypes.Add(typeof(Xeku.ESign.Blazor.ESignBlazorModule));

3. Configure API Endpoint (Optional)

In Startup.cs or Program.cs:

app.MapControllers(); // Ensures the eSign API endpoint is mapped

View Controllers

SignAgentListViewController

Provides enhanced UI for managing sign agent (delegation) records in list views.

Features:

  • Bulk delegation management
  • Quick filtering by date range
  • Visual indicators for active/expired delegations

SignStepNestedListViewController

Optimizes the display of signing steps within nested list views.

Features:

  • Compact step visualization
  • Real-time status updates
  • Inline step details

API Endpoint

The module exposes RESTful API endpoints for external integration:

Endpoints

Method Endpoint Description
POST /api/esign/submit Submit a form for signing
POST /api/esign/sign Process a signing action
GET /api/esign/status/{id} Get form signing status
GET /api/esign/pending List pending items for current user

Authentication

All endpoints require authentication via XAF's built-in security system.

AI Agent Integration

Use Cases

  • External System Integration: Connect ERP, CRM, or other systems to the signing workflow
  • Automated Approval Processing: Process approvals from external triggers
  • Status Synchronization: Keep external systems in sync with signing status

API Integration Example

// External system submitting a form via HTTP
using var client = new HttpClient();
client.DefaultRequestHeaders.Authorization = 
    new AuthenticationHeaderValue("Bearer", token);

var response = await client.PostAsJsonAsync("/api/esign/submit", new
{
    FormType = "LeaveForm",
    FormId = formGuid
});

Best Practices

  • Authentication: Always use secure authentication tokens
  • Error Handling: Handle API errors gracefully
  • Rate Limiting: Implement appropriate rate limiting for bulk operations

UI Customization

Custom View Styling

The module uses standard DevExpress XAF Blazor styling. To customize:

/* wwwroot/css/custom.css */
.esign-step-pending {
    background-color: #fff3cd;
}

.esign-step-approved {
    background-color: #d4edda;
}

.esign-step-rejected {
    background-color: #f8d7da;
}

License

MIT License

Product 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  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

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
0.0.0.7 98 1/28/2026
0.0.0.6 93 1/21/2026