Click or drag to resize

ShellCommandIsShellCommand Method

Determines whether the specified type is a shell command type.

Namespace:  Ookii.CommandLine
Assembly:  Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntax
public static bool IsShellCommand(
	Type type
)

Parameters

type
Type: SystemType
The type to check.

Return Value

Type: Boolean
if the specified type is a shell command type; otherwise, .
Exceptions
ExceptionCondition
ArgumentNullExceptiontype is .
Remarks

A type is a shell command type if it is not an abstract type, inherits from the ShellCommand class, and has the ShellCommandAttribute applied to it.

See Also