Udostępnij za pośrednictwem


InvokeMethod.GenericTypeArguments Właściwość

Definicja

Argumenty typu ogólnego zawartej 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)

Wartość właściwości

Argumenty.

Przykłady

W poniższym przykładzie kodu pokazano ustawienie parametru GenericTypeArguments działania InvokeMethod . Ten przykład pochodzi z przykładu Using the InvokeMethod Activity (Używanie działania InvokeMethod).

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

Uwagi

Argumenty typu ogólnego muszą być ustawione tylko wtedy, gdy wywoływana metoda jest ogólna.

Dotyczy