[This is preliminary documentation and is subject to change.]

Result of file copy operation

Namespace: Tools.IOt
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[FlagsAttribute]
public enum FileCopyResult
Visual Basic
<FlagsAttribute> _
Public Enumeration FileCopyResult
Visual C++
[FlagsAttribute]
public enum class FileCopyResult
F#
[<FlagsAttribute>]
type FileCopyResult
JScript
public enum FileCopyResult

Members

Member nameValueDescription
Copyed1File was copied
PreCancelled3Copying was cancelled before it started
Cancelled2Copying was cancelled after it started
Terminate1024If this falg is set, the whole batch copying operation was cancelled by callback function and should not continue. This is never combined with Copyed
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

See Also