The data type enumeration of the target optional parameter switch.
CLITypes
01 Syntax
Microsoft.VisualBasic.CommandLine.Reflection.CLITypes
02 Fields
| Name | Overloads | Summary |
|---|---|---|
| Undefined | 2 | 其他未知的未定义类型 (如果是未定义的类型,则在自动生成命令行参数值的时候会被忽略掉,这个时候会需要你自己进行 手动处理这些未定义类型的参数值) |
| File | 2 | File/directory path, is equals most string. |
| String | 2 | String.(对于指定为字符串类型的参数,在调用的时候回自动调用 Utils.CLIToken())函数) |
| Integer | 2 | Int |
| Double | 2 | Real |
| Boolean | 2 | This is a flag value, if this flag presents in the CLI, then this named Boolean value is TRUE, otherwise is FALSE. |
| Base64 | 2 | This cli argument parameter value is kind of binary value, we can decode this value into binary data chunks. |
03 Members
Undefined
其他未知的未定义类型 (如果是未定义的类型,则在自动生成命令行参数值的时候会被忽略掉,这个时候会需要你自己进行 手动处理这些未定义类型的参数值)
File
File/directory path, is equals most string. (对于指定为路径类型的参数值,在生成命令行的时候会自动调用Utils.CLIPath()函数, 在Linux系统之中,文件夹也是一种文件)
String
String.(对于指定为字符串类型的参数,在调用的时候回自动调用 Utils.CLIToken()函数)
Integer
Int
Double
Real
Boolean
This is a flag value, if this flag presents in the CLI, then this named Boolean value is TRUE, otherwise is FALSE.
Base64
This cli argument parameter value is kind of binary value, we can decode this value into binary data chunks.
(这个命令行参数值是base64字符串,可以看作为一个二进制输入参数)
Undefined
File
String
Integer
Double
Boolean
Base64