AutoGenerateNameOptions Enumeration

Specifies options for automatic generation of entry names.

Namespace:  Dundas.BI.FileSystem
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
[FlagsAttribute]
public enum AutoGenerateNameOptions
Members
  Member nameValueDescription
None0 Specifies no options for automatic name generation.
SkipNumericSuffixIfPossible1 Specifies that if a prefix was provided, a numeric suffix should only be appended if necessary to avoid a name collision.
PlaceNumericSuffixBeforeFileExtension2 Specifies that the prefix may contain a file extension, and the numeric suffix should be placed before the extension instead of at the end of the prefix. For example, if the specified name (used as a prefix) is MyData.csv, the system will generate MyData1.csv instead of MyData.csv1.
See Also