Constructor DriverDescriptor
DriverDescriptor(string, string, string, PlatformID[], Func<IComponentFactory>)
Descriptor for a registered driver containing metadata and factory.
public DriverDescriptor(string Name, string DisplayName, string Description, PlatformID[] SupportedPlatforms, Func<IComponentFactory> CreateFactory)
Parameters
NamestringThe driver name (lowercase, e.g., "windows").
DisplayNamestringHuman-readable display name (e.g., "Windows Console Driver").
DescriptionstringBrief description of the driver's purpose and features.
SupportedPlatformsPlatformID[]Array of platforms this driver supports.
CreateFactoryFunc<IComponentFactory>Factory function to create an IComponentFactory instance.