System.Configuration.Provider.ProviderBase
Provides a base implementation for the extensible provider model.
namespace System.Configuration.Provider
{
public class ProviderException : Exception
{
public ProviderException();
public ProviderException(string message);
public ProviderException(string message, Exception innerException);
protected ProviderException(SerializationInfo info, StreamingContext context);
}
}
namespace System.Configuration.Provider
{
public abstract class ProviderBase
{
public virtual string Name { get; }
public virtual string Description { get; }
public virtual void Initialize(string name, NameValueCollection config);
protected ProviderBase();
}
}