Sdílet prostřednictvím


InvokeMethod.GenericTypeArguments Vlastnost

Definice

Argumenty obecného typu obsažené metody.

public:
 property System::Collections::ObjectModel::Collection<Type ^> ^ GenericTypeArguments { System::Collections::ObjectModel::Collection<Type ^> ^ get(); };
public System.Collections.ObjectModel.Collection<Type> GenericTypeArguments { get; }
member this.GenericTypeArguments : System.Collections.ObjectModel.Collection<Type>
Public ReadOnly Property GenericTypeArguments As Collection(Of Type)

Hodnota vlastnosti

Argumenty.

Příklady

Následující ukázka kódu ukazuje nastavení GenericTypeArguments InvokeMethod aktivity. Tento příklad je z ukázky using the InvokeMethod Activity .

new InvokeMethod
{
    TargetObject = new InArgument<TestClass>(ctx => testClass),
    MethodName = "GenericInstanceMethod",
    GenericTypeArguments = { typeof(string) },
    Parameters =
    {
        new InArgument<string>("Hello world")
    }
},

Poznámky

Argumenty obecného typu musí být nastaveny pouze v případě, že je volaná metoda obecná.

Platí pro