XmlSchedulerProviderInitialize Method |
Initializes the provider.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic override void Initialize(
string name,
NameValueCollection config
)
Public Overrides Sub Initialize (
name As String,
config As NameValueCollection
)
public:
virtual void Initialize(
String^ name,
NameValueCollection^ config
) override
abstract Initialize :
name : string *
config : NameValueCollection -> unit
override Initialize :
name : string *
config : NameValueCollection -> unit
Parameters
- name
- Type: SystemString
The friendly name of the provider. - config
- Type: System.Collections.SpecializedNameValueCollection
A collection of the name/value pairs representing the provider-specific attributes specified in the configuration for this provider.
ExceptionsException | Condition |
---|
ArgumentNullException | The name of the provider is null. |
InvalidOperationException | An attempt is made to call Initialize(String, NameValueCollection) on a provider after the provider has already been initialized. |
ArgumentException | The name of the provider has a length of zero. |
See Also