Exemple #1
0
 public void Initialize(PluginConfiguration configuration)
 {
     this.pluginConfiguration = configuration ?? throw new ArgumentNullException(nameof(configuration));
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ImportClientPluginFactory"/> class.
 /// </summary>
 /// <param name="configuration">
 /// The plugin configuration.
 /// </param>
 public ImportClientPluginFactory(PluginConfiguration configuration)
 {
     this.configuration = configuration ?? throw new ArgumentNullException(nameof(configuration));
     this.pluginSearch  = null;
     this.disposed      = false;
 }