コード例 #1
0
 /// <summary>
 /// Creates new instance of <see cref="WavesNativeLibraryService"/>.
 /// </summary>
 /// <param name="core">Instance of core.</param>
 /// <param name="configurationService">Instance of configuration service.</param>
 public WavesNativeLibraryService(IWavesCore core, IWavesConfigurationService configurationService)
     : base(configurationService)
 {
     _core = core;
 }
コード例 #2
0
 /// <summary>
 /// Creates new instance of <see cref="WavesConfigurableObject"/>.
 /// </summary>
 /// <param name="configurationService">Instance of configuration service.</param>
 protected WavesConfigurablePlugin(
     IWavesConfigurationService configurationService)
     : base(configurationService)
 {
 }
コード例 #3
0
 /// <summary>
 /// Creates new instance os <see cref="WavesConfigurableObject"/>.
 /// </summary>
 /// <param name="configurationService">Instance of configuration service.</param>
 protected WavesConfigurableObject(IWavesConfigurationService configurationService)
 {
     ConfigurationService = configurationService;
 }
コード例 #4
0
 /// <summary>
 ///     Creates new instance of <see cref="WavesPerformanceCounterService" />.
 /// </summary>
 /// <param name="configurationService">Configurable service.</param>
 public WavesPerformanceCounterService(IWavesConfigurationService configurationService)
     : base(configurationService)
 {
 }