Partager via


InvokeMethod.GenericTypeArguments Propriété

Définition

Arguments de type générique de la méthode contenue.

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)

Valeur de propriété

Arguments.

Exemples

L'exemple de code suivant montre comment définir la propriété GenericTypeArguments d'une activité InvokeMethod. Cet exemple provient de l’exemple Using the InvokeMethod Activity .

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

Remarques

Les arguments de type générique doivent être définis uniquement si la méthode appelée est générique.

S’applique à