Enum FacturXDocumentBuilderAttachmentConflictResolution
The action to take when an attachment with the same name already exists in the base document.
Assembly: FacturXDotNet.dll
csharp
public enum FacturXDocumentBuilderAttachmentConflictResolution
Fields
Overwrite
Overwrite the existing attachment with the new one.
csharp
Overwrite = 0
KeepOld
Keep the existing attachment and do not add the new one.
csharp
KeepOld = 1
KeepBoth
Keep the existing attachment and add the new one with the same name.
csharp
KeepBoth = 2
Throw
Throw an exception when an attachment with the same name already exists.
csharp
Throw = 3