Returns a new member set that selects members with the specified signature. This is particularly useful when the member is overloaded and cannot be resolved automatically.

Namespace:  MbUnit.Framework
Assembly:  MbUnit (in MbUnit.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public Mirror..::.MemberSet WithSignature(
	params Type[] argTypes
)
Visual Basic (Declaration)
Public Function WithSignature ( _
	ParamArray argTypes As Type() _
) As Mirror..::.MemberSet

Parameters

argTypes
Type: array< System..::.Type >[]()[]
The expected argument types, which may contain null elements as placeholders for unspecified types.

Return Value

A member set that selects members with the specified signature.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThrown if argTypes is null.

See Also