Table of Contents

Interface IParameterInfo

Namespace
NUnit.Framework.Interfaces
Assembly
nunit.framework.dll

The IParameterInfo interface is an abstraction of a .NET parameter.

public interface IParameterInfo : IReflectionInfo
Inherited Members

Properties

IsOptional

Gets a value indicating whether the parameter is optional

bool IsOptional { get; }

Property Value

bool

Method

Gets an IMethodInfo representing the method for which this is a parameter

IMethodInfo Method { get; }

Property Value

IMethodInfo

ParameterInfo

Gets the underlying .NET ParameterInfo

ParameterInfo ParameterInfo { get; }

Property Value

ParameterInfo

ParameterType

Gets the Type of the parameter

Type ParameterType { get; }

Property Value

Type