Search Results for

    Show / Hide Table of Contents

    Interface IParameterInfo

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

    Inherited Members
    IReflectionInfo.GetCustomAttributes<T>(bool)
    IReflectionInfo.IsDefined<T>(bool)
    Namespace: NUnit.Framework.Interfaces
    Assembly: nunit.framework.dll
    Syntax
    public interface IParameterInfo : IReflectionInfo

    Properties

    View Source

    IsOptional

    Gets a value indicating whether the parameter is optional

    Declaration
    bool IsOptional { get; }
    Property Value
    Type Description
    bool
    View Source

    Method

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

    Declaration
    IMethodInfo Method { get; }
    Property Value
    Type Description
    IMethodInfo
    View Source

    ParameterInfo

    Gets the underlying .NET ParameterInfo

    Declaration
    ParameterInfo ParameterInfo { get; }
    Property Value
    Type Description
    ParameterInfo
    View Source

    ParameterType

    Gets the Type of the parameter

    Declaration
    Type ParameterType { get; }
    Property Value
    Type Description
    Type
    • View Source
    In this article
    Back to top Generated by DocFX | Copyright (c) 2018- The NUnit Project - Licensed under CC BY-NC-SA 4.0