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
*/
7
using
System;
8
9
namespace
NanoXLSX.Registry.Attributes
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
}
NanoXLSX.Registry.Attributes.NanoXlsxQueuePlugInAttribute
Attribute to declare a class a NanoXLSX plug-in that can be queued (not replacing existing instance w...
Definition
NanoXlsxQueuePluginAttribute.cs:16
NanoXLSX.Registry.Attributes.NanoXlsxQueuePlugInAttribute.PlugInUUID
string PlugInUUID
Unique ID if the plug-in.
Definition
NanoXlsxQueuePluginAttribute.cs:20
NanoXLSX.Registry.Attributes.NanoXlsxQueuePlugInAttribute.PlugInOrder
int PlugInOrder
Order how the annotated plug-ins are registered. The higher number will executed after the lower ones...
Definition
NanoXlsxQueuePluginAttribute.cs:31
NanoXLSX.Registry.Attributes.NanoXlsxQueuePlugInAttribute.QueueUUID
string QueueUUID
Queue UUID for plug-ins that are not replacing a specific base plug-in, but defined as additional res...
Definition
NanoXlsxQueuePluginAttribute.cs:25
NanoXLSX.Registry.Attributes
Definition
NanoXlsxPluginAttribute.cs:11
Registry
Attributes
NanoXlsxQueuePluginAttribute.cs
Generated by
1.15.0