InvokeMethod.GenericTypeArguments Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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.