Skip to content

Mocker Commands

TL;DR — This page lists the public Runner functions in the Mocker Commands category.

When to use

Use this page when you need source-backed signatures, declaring types, and XML doc comments for this function category.

Each entry uses the short function name as the table-of-contents label. Expand an entry to inspect its source file, signature, and XML doc comments.

The functions on this page are grouped by responsibility so related operations stay together.

Identity and hook selection

Named

Source file, signature, and docstring

Member MockerCommandBuilder.Named(string name)

Kind function

Declaring Type MockerCommandBuilder

Source File QaaS.Runner.Sessions/Actions/MockerCommands/MockerCommandBuilder.cs

Signature

public MockerCommandBuilder Named(string name)

Docstring

Sets the name used for the current Runner mocker command builder instance.

Execution order

AtStage

Source file, signature, and docstring

Member MockerCommandBuilder.AtStage(int stage)

Kind function

Declaring Type MockerCommandBuilder

Source File QaaS.Runner.Sessions/Actions/MockerCommands/MockerCommandBuilder.cs

Signature

public MockerCommandBuilder AtStage(int stage)

Docstring

Sets the stage used by the current Runner mocker command builder instance.

Servers

WithServerName

Source file, signature, and docstring

Member MockerCommandBuilder.WithServerName(string serverName)

Kind function

Declaring Type MockerCommandBuilder

Source File QaaS.Runner.Sessions/Actions/MockerCommands/MockerCommandBuilder.cs

Signature

public MockerCommandBuilder WithServerName(string serverName)

Docstring

Configures server name on the current Runner mocker command builder instance.

Configuration

WithRedis

Source file, signature, and docstring

Member MockerCommandBuilder.WithRedis(RedisConfig redis)

Kind function

Declaring Type MockerCommandBuilder

Source File QaaS.Runner.Sessions/Actions/MockerCommands/MockerCommandBuilder.cs

Signature

public MockerCommandBuilder WithRedis(RedisConfig redis)

Docstring

Configures redis on the current Runner mocker command builder instance.

WithRequestDurationMs

Source file, signature, and docstring

Member MockerCommandBuilder.WithRequestDurationMs(int requestDurationMs)

Kind function

Declaring Type MockerCommandBuilder

Source File QaaS.Runner.Sessions/Actions/MockerCommands/MockerCommandBuilder.cs

Signature

public MockerCommandBuilder WithRequestDurationMs(int requestDurationMs)

Docstring

Configures request duration ms on the current Runner mocker command builder instance.

WithRequestRetries

Source file, signature, and docstring

Member MockerCommandBuilder.WithRequestRetries(int requestRetries)

Kind function

Declaring Type MockerCommandBuilder

Source File QaaS.Runner.Sessions/Actions/MockerCommands/MockerCommandBuilder.cs

Signature

public MockerCommandBuilder WithRequestRetries(int requestRetries)

Docstring

Configures request retries on the current Runner mocker command builder instance.

Collection helpers

UpdateConfiguration

Source file, signature, and docstring

Member MockerCommandBuilder.UpdateConfiguration(object configuration)

Kind function

Declaring Type MockerCommandBuilder

Source File QaaS.Runner.Sessions/Actions/MockerCommands/MockerCommandBuilder.cs

Signature

public MockerCommandBuilder UpdateConfiguration(object configuration)

Docstring

Updates the configuration currently stored on the Runner mocker command builder instance.

General

Configure

Source file, signature, and docstring

Member MockerCommandBuilder.Configure(MockerCommandConfig command)

Kind function

Declaring Type MockerCommandBuilder

Source File QaaS.Runner.Sessions/Actions/MockerCommands/MockerCommandBuilder.cs

Signature

public MockerCommandBuilder Configure(MockerCommandConfig command)

Docstring

Sets the configuration currently stored on the Runner mocker command builder instance.

See also