NanoXLSX.Core 3.0.0-rc.3
Loading...
Searching...
No Matches
NanoXlsxQueuePluginAttribute.cs
1/*
2 * NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3 * Copyright Raphael Stoeckli © 2025
4 * This library is licensed under the MIT License.
5 * You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
6 */
7using System;
8
10{
14 [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
15 public class NanoXlsxQueuePlugInAttribute : Attribute
16 {
20 public string PlugInUUID { get; set; }
21
25 public string QueueUUID { get; set; }
26
31 public int PlugInOrder { get; set; }
32 }
33}
Attribute to declare a class a NanoXLSX plug-in that can be queued (not replacing existing instance w...
int PlugInOrder
Order how the annotated plug-ins are registered. The higher number will executed after the lower ones...
string QueueUUID
Queue UUID for plug-ins that are not replacing a specific base plug-in, but defined as additional res...