Returns true if the signature matches the specified assembly name.

Namespace:  Gallio.Common.Reflection
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public bool IsMatch(
	AssemblyName assemblyName
)
Visual Basic (Declaration)
Public Function IsMatch ( _
	assemblyName As AssemblyName _
) As Boolean

Parameters

assemblyName
Type: System.Reflection..::.AssemblyName
The assembly name.

Return Value

True if the signature matches the assembly name.

Remarks

When the assembly name is a partial name that omits version information, the version criteria of the signature are ignored.

Exceptions

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

See Also