ParameterModifier 構造体
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
型が変更されているパラメーター シグネチャでバインドを機能させるためにパラメーターに修飾子をアタッチします。
public value class ParameterModifier
public readonly struct ParameterModifier
public struct ParameterModifier
[System.Serializable]
public struct ParameterModifier
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public struct ParameterModifier
type ParameterModifier = struct
[<System.Serializable>]
type ParameterModifier = struct
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type ParameterModifier = struct
Public Structure ParameterModifier
- 継承
- 属性
例
次のコード例は、3 つの文字列引数を持つメンバーに対してこれを示しています。そのうちの 1 番目と 3 番目は参照渡しです。 という名前 obj
の変数に COM オブジェクトへの参照が含まれているとします。
// Create an array containing the arguments.
array<Object^>^ args = {"Argument 1", "Argument 2", "Argument 3" };
// Initialize a ParameterModifier with the number of parameters.
ParameterModifier p = ParameterModifier(3);
// Pass the first and third parameters by reference.
p[0] = true;
p[2] = true;
// The ParameterModifier must be passed as the single element
// of an array.
array<ParameterModifier>^ mods = { p };
// Invoke the method late bound.
obj->GetType()->InvokeMember("MethodName", BindingFlags::InvokeMethod,
nullptr, obj, args, mods, nullptr, nullptr);
// Create an array containing the arguments.
object[] args = {"Argument 1", "Argument 2", "Argument 3" };
// Initialize a ParameterModifier with the number of parameters.
ParameterModifier p = new ParameterModifier(3);
// Pass the first and third parameters by reference.
p[0] = true;
p[2] = true;
// The ParameterModifier must be passed as the single element
// of an array.
ParameterModifier[] mods = { p };
// Invoke the method late bound.
obj.GetType().InvokeMember("MethodName", BindingFlags.InvokeMethod,
null, obj, args, mods, null, null);
' Create an array containing the arguments.
Dim args As Object = {"Argument 1", "Argument 2", "Argument 3" }
' Initialize a ParameterModifier with the number of parameters.
Dim p As New ParameterModifier(3)
' Pass the first and third parameters by reference.
p(0) = True
p(2) = True
' The ParameterModifier must be passed as the single element
' of an array.
Dim mods() As ParameterModifier = { p }
' Invoke the method late bound.
obj.GetType().InvokeMember("MethodName", BindingFlags.InvokeMethod, _
Nothing, obj, args, mods, Nothing, Nothing)
注釈
構造体は ParameterModifier 、遅延バインディングで Type.InvokeMember(String, BindingFlags, Binder, Object, Object[], ParameterModifier[], CultureInfo, String[]) アクセスされる COM コンポーネントへの参照によってパラメーターを渡すときに、メソッド オーバーロードと共に使用されます。 参照渡しされるパラメーターは、単一の構造体によって指定されます。これは、単一 ParameterModifier の要素を含む配列で渡す必要があります。 この配列の 1 つの ParameterModifier 構造体は、呼び出されるメンバー内のパラメーターの数で初期化する必要があります。 これらのパラメーターのうち、参照渡しされるパラメーターを示すには、パラメーターの Item[] 0 から始まる位置に対応するインデックス番号の プロパティ (C#のインデクサー) の値を に true
設定します。
コンストラクター
ParameterModifier(Int32) |
指定されたパラメーター数を表す ParameterModifier 構造体の新しいインスタンスを初期化します。 |
プロパティ
Item[Int32] |
指定したインデックス位置にあるパラメーターが現在の ParameterModifier によって変更されるかどうかを指定する値を取得または設定します。 |
適用対象
.NET