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
Method
Gets an IMethodInfo representing the method for which this is a parameter
IMethodInfo Method { get; }
Property Value
ParameterInfo
Gets the underlying .NET ParameterInfo
ParameterInfo ParameterInfo { get; }
Property Value
ParameterType
Gets the Type of the parameter
Type ParameterType { get; }