Click or drag to resize
ConfigExtensionsWithEvery Method
Clones a Config object but overrides the Every property.

Namespace: FsCheckUtils
Assembly: FsCheckUtils (in FsCheckUtils.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax
public static Config WithEvery(
	this Config config,
	FSharpFunc<int, FSharpFunc<FSharpList<Object>, string>> every
)

Parameters

config
Type: Config
The Config object to clone.
every
Type: Microsoft.FSharp.CoreFSharpFuncInt32, FSharpFuncFSharpListObject, String
The value to user to override Every

Return Value

Type: Config
A Config object.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Config. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also