GeneratedCommandManagerAttributeAssemblyNames Property
Gets or sets the names of the assemblies that contain the commands that the generated
CommandManager will use.
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
public string[]? AssemblyNames { get; set; }
Public Property AssemblyNames As String()
Get
Set
Dim instance As GeneratedCommandManagerAttribute
Dim value As String()
value = instance.AssemblyNames
instance.AssemblyNames = value
public:
property array<String^>^ AssemblyNames {
array<String^>^ get ();
void set (array<String^>^ value);
}
Property Value
String
An array with assembly names, or
to use the commands from the
assembly containing the generated manager.
The assemblies used must be directly referenced by your project. Dynamically loading
assemblies is not supported by this attribute; use the
CommandManager(IEnumerableAssembly, CommandOptions)
constructor instead for that purpose.
The names in this array can be either just the assembly name, or the full assembly
identity including version, culture, and public key token.