IssueAttributes
using System;
namespace Relativity.Transfer
{
[Flags]
public enum IssueAttributes
{
None = 0,
Authentication = 1,
Canceled = 2,
DirectoryNotFound = 4,
Error = 8,
File = 16,
FileNotFound = 32,
Io = 64,
InvalidCharacters = 128,
InvalidPath = 256,
Job = 512,
Licensing = 1024,
LongPath = 2048,
Overwrite = 4096,
ReadWritePermissions = 8192,
StorageReadWrite = 16384,
StorageOutOfSpace = 32768,
Timeout = 65536,
Warning = 131072,
Malware = 262144
}
}