ICommandLineManager.AddProvider Method

Definition

Overloads

Name Description
AddProvider(Func<ICommandLineOptionsProvider>)

Adds a command line options provider.

AddProvider(Func<IServiceProvider,ICommandLineOptionsProvider>)

Adds a command line options provider.

AddProvider(Func<ICommandLineOptionsProvider>)

Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs

Adds a command line options provider.

public void AddProvider(Func<Microsoft.Testing.Platform.Extensions.CommandLine.ICommandLineOptionsProvider> commandLineProviderFactory);
abstract member AddProvider : Func<Microsoft.Testing.Platform.Extensions.CommandLine.ICommandLineOptionsProvider> -> unit
Public Sub AddProvider (commandLineProviderFactory As Func(Of ICommandLineOptionsProvider))

Parameters

commandLineProviderFactory
Func<ICommandLineOptionsProvider>

The factory method for creating the command line options provider.

Applies to

AddProvider(Func<IServiceProvider,ICommandLineOptionsProvider>)

Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs
Source:
ICommandLineManager.cs

Adds a command line options provider.

public void AddProvider(Func<IServiceProvider,Microsoft.Testing.Platform.Extensions.CommandLine.ICommandLineOptionsProvider> commandLineProviderFactory);
abstract member AddProvider : Func<IServiceProvider, Microsoft.Testing.Platform.Extensions.CommandLine.ICommandLineOptionsProvider> -> unit
Public Sub AddProvider (commandLineProviderFactory As Func(Of IServiceProvider, ICommandLineOptionsProvider))

Parameters

commandLineProviderFactory
Func<IServiceProvider,ICommandLineOptionsProvider>

The factory method for creating the command line options provider, given a service provider.

Applies to