__Provider

[This is preliminary documentation and subject to change.]

The __Provider system class is an abstract base class used to describe all types of providers in general, at least to the extent that they are given a name. No instance of this class can be created. It is a superclass for specific types of provider classes.

[abstract]
class __Provider : __SystemClass
{
    [key] string Provider = "<|vendor|provider|version>";
};
 

Properties

Provider
A unique string that identifies the provider. The following format is suggested to prevent naming conflicts:

vendor|provider|version

"Microsoft|TestProvider|V1.0"