Click or drag to resize

IExecutionProfileOptionsWithDerivedProfile Method

The behavior of this method is the same as WithProfile(String, ActionIExecutionProfileBuilder) but instead of adding a normal execution profile, this method can be used to add a derived execution profile which is a profile that will inherit any unset settings from the base execution profile specified by baseProfile.

Namespace:  Dse
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
IExecutionProfileOptions WithDerivedProfile(
	string name,
	string baseProfile,
	Action<IExecutionProfileBuilder> profileBuildAction
)

Parameters

name
Type: SystemString
Name of the execution profile.
baseProfile
Type: SystemString
Base Execution Profile's name from which the derived profile will inherit unset settings.
profileBuildAction
Type: SystemActionIExecutionProfileBuilder
Execution Profile builder.

Return Value

Type: IExecutionProfileOptions
See Also