Table of Contents

Class WildcardOptions

Namespace
Cuemon.Extensions.Xunit
Assembly
Cuemon.Extensions.Xunit.dll
public class WildcardOptions : IParameterObject
Inheritance
Object
WildcardOptions
Implements

Constructors

WildcardOptions()

Initializes a new instance of the WildcardOptions class.

public WildcardOptions()

Remarks

The following table shows the initial property values for an instance of WildcardOptions.

PropertyInitial Value
GroupOfCharacters\\*
SingleCharacter\\?

Properties

GroupOfCharacters

Gets or sets the symbol used to represents any group of characters, including no character. The default value is \*.

public string GroupOfCharacters { get; set; }

Property Value

String

The symbol used to represents any group of characters, including no character.

SingleCharacter

Gets or sets the symbol used to represents any single character. The default value is \?.

public string SingleCharacter { get; set; }

Property Value

String

The symbol used to represents any single character.

ThrowOnNoMatch

Gets or sets a value indicating whether a System.ArgumentOutOfRangeException is thrown when no match is found. The default value is false.

public bool ThrowOnNoMatch { get; set; }

Property Value

Boolean

true if a System.ArgumentOutOfRangeException is thrown when no match is found; otherwise, false.