ParameterInfo.IsOut プロパティ

定義

このパラメーターが出力パラメーターかどうかを示す値を取得します。

public bool IsOut { get; }

プロパティ値

パラメーターが出力パラメーターの場合は true、出力パラメーターでない場合は false です。

次の例は、および ParameterAttributes.Optional 属性のメソッド パラメーターをParameterAttributes.InParameterAttributes.Outテストする方法を示しています。

この例には、次の処理を DefineMethod 行うメソッドが含まれています。

DefineMethod実行した後、動的アセンブリが見つかるまで、現在読み込まれているアセンブリを検索します。 アセンブリから読み込みMyType、 メソッドの オブジェクトをMyMethodMethodInfo取得し、パラメーターを調べます。 この例では、、IsOut、および IsOptional プロパティをIsIn使用して、パラメーターに関する情報を表示します。

using System;
using System.Reflection;

 class parminfo
 {
    public static void mymethod (
       int int1m, out string str2m, ref string str3m)
    {
       str2m = "in mymethod";
    }

    public static int Main(string[] args)
    {
       Console.WriteLine("\nReflection.Parameterinfo");

       //Get the ParameterInfo parameter of a function.

       //Get the type.
       Type Mytype = Type.GetType("parminfo");

       //Get and display the method.
       MethodBase Mymethodbase = Mytype.GetMethod("mymethod");
       Console.Write("\nMymethodbase = " + Mymethodbase);

       //Get the ParameterInfo array.
       ParameterInfo[] Myarray = Mymethodbase.GetParameters();

       //Get and display the IsOut of each parameter.
       foreach (ParameterInfo Myparam in Myarray)
       {
          Console.Write ("\nFor parameter # "   + Myparam.Position
             + ", the IsOut is - " +  Myparam.IsOut );
       }
       return 0;
    }
 }
 /*
 This code produces the following output:

 Reflection.ParameterInfo

 Mymethodbase = Void mymethod (int, System.String ByRef, System.String ByRef)
 For parameter # 0, the IsOut is - False
 For parameter # 1, the IsOut is - True
 For parameter # 2, the IsOut is - False
 */

注釈

このメソッドは、省略可能なメタデータ フラグに依存します。 このフラグはコンパイラによって挿入できますが、コンパイラには必須ではありません。

このメソッドは、列挙子の Out フラグを ParameterAttributes 使用します。

配列を ParameterInfo 取得するには、まず メソッドまたはコンストラクターを取得し、 を呼び出 MethodBase.GetParametersします。

適用対象

製品 バージョン
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0