Partager via


MetaModel.GetActionPath(String, String, Object) Méthode

Définition

Retourne le chemin d'accès de l'action associé à une table spécifique.

public:
 System::String ^ GetActionPath(System::String ^ tableName, System::String ^ action, System::Object ^ row);
public:
 virtual System::String ^ GetActionPath(System::String ^ tableName, System::String ^ action, System::Object ^ row);
public string GetActionPath (string tableName, string action, object row);
member this.GetActionPath : string * string * obj -> string
abstract member GetActionPath : string * string * obj -> string
override this.GetActionPath : string * string * obj -> string
Public Function GetActionPath (tableName As String, action As String, row As Object) As String

Paramètres

tableName
String

Nom de la table à laquelle l'action s'applique.

action
String

Action qui doit s'appliquer à la table.

row
Object

Objet qui représente une ligne de données unique dans un tableau. row est utilisé pour fournir des valeurs pour les paramètres de chaîne de requête.

Retours

String

URL associée à l'itinéraire.

Exemples

L’exemple suivant montre comment utiliser la méthode pour évaluer le GetActionPath(String, String, Object) chemin de routage (déterminer l’URL) d’une table spécifiée. Pour obtenir un exemple complet, consultez MetaModel.

// Get the registered action path.
public string EvaluateActionPath()
{
    string tableName = LinqDataSource1.TableName;
    
    MetaModel model = GetModel(false);

    string actionPath =
        model.GetActionPath(tableName,
            System.Web.DynamicData.PageAction.List, GetDataItem());
    return actionPath;
}
' Get the registered action path.
Public Function EvaluateActionPath() As String
    Dim tableName As String = LinqDataSource1.TableName

    Dim model As MetaModel = GetModel(False)

    Dim actionPath As String = model.GetActionPath(tableName, System.Web.DynamicData.PageAction.List, GetDataItem())
    Return actionPath
End Function

Remarques

L’itinéraire est déterminé par la combinaison du nom et de l’action de la table.

Exécutez un exemple en ligne de cette fonctionnalité.

S’applique à