MetaTable.GetActionPath 메서드

정의

지정된 행의 작업 경로를 가져옵니다.

오버로드

Name Description
GetActionPath(String, Object, String)

동작의 이름과 동작의 가상 경로를 사용하여 지정된 행의 작업 경로를 반환합니다.

GetActionPath(String)

현재 테이블 및 지정된 작업의 작업 경로를 반환합니다.

GetActionPath(String, IList<Object>)

현재 테이블, 지정된 작업 및 지정된 기본 키에 대한 작업 경로를 반환합니다.

GetActionPath(String, Object)

작업 이름을 사용하여 지정된 행의 작업 경로를 반환합니다.

GetActionPath(String, RouteValueDictionary)

현재 테이블 및 지정된 작업 및 경로에 대한 작업 경로를 반환합니다.

GetActionPath(String, IList<Object>, String)

지정된 기본 키 및 가상 경로에 따라 쿼리 문자열을 작업 경로에 추가합니다.

설명

작업 경로는 특정 엔터티에 대한 작업의 URL입니다. 자세한 내용은 클래스 개요를 System.Web.DynamicData.PageAction 참조하세요.

GetActionPath(String, Object, String)

동작의 이름과 동작의 가상 경로를 사용하여 지정된 행의 작업 경로를 반환합니다.

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

매개 변수

action
String

작업의 이름입니다.

row
Object

작업 경로에 대한 행을 포함하는 개체입니다.

path
String

작업의 가상 경로입니다.

반품

지정된 행의 작업 경로입니다.

설명

작업 경로는 특정 엔터티에 대한 작업의 URL입니다. 자세한 내용은 클래스 개요를 System.Web.DynamicData.PageAction 참조하세요.

적용 대상

GetActionPath(String)

현재 테이블 및 지정된 작업의 작업 경로를 반환합니다.

public:
 System::String ^ GetActionPath(System::String ^ action);
public:
 virtual System::String ^ GetActionPath(System::String ^ action);
public string GetActionPath(string action);
member this.GetActionPath : string -> string
abstract member GetActionPath : string -> string
override this.GetActionPath : string -> string
Public Function GetActionPath (action As String) As String

매개 변수

action
String

작업의 이름입니다.

반품

지정된 작업의 작업 경로입니다.

예제

작업 경로는 특정 엔터티에 대한 작업의 URL입니다. 자세한 내용은 클래스 개요를 System.Web.DynamicData.PageAction 참조하세요.

적용 대상

GetActionPath(String, IList<Object>)

현재 테이블, 지정된 작업 및 지정된 기본 키에 대한 작업 경로를 반환합니다.

public:
 System::String ^ GetActionPath(System::String ^ action, System::Collections::Generic::IList<System::Object ^> ^ primaryKeyValues);
public:
 virtual System::String ^ GetActionPath(System::String ^ action, System::Collections::Generic::IList<System::Object ^> ^ primaryKeyValues);
public string GetActionPath(string action, System.Collections.Generic.IList<object> primaryKeyValues);
member this.GetActionPath : string * System.Collections.Generic.IList<obj> -> string
abstract member GetActionPath : string * System.Collections.Generic.IList<obj> -> string
override this.GetActionPath : string * System.Collections.Generic.IList<obj> -> string
Public Function GetActionPath (action As String, primaryKeyValues As IList(Of Object)) As String

매개 변수

action
String

작업의 이름입니다.

primaryKeyValues
IList<Object>

기본 키를 구성하는 열 값 목록입니다.

반품

지정된 작업 및 기본 키에 대한 작업 경로입니다.

설명

작업 경로는 특정 엔터티에 대한 작업의 URL입니다. 자세한 내용은 클래스 개요를 System.Web.DynamicData.PageAction 참조하세요.

적용 대상

GetActionPath(String, Object)

작업 이름을 사용하여 지정된 행의 작업 경로를 반환합니다.

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

매개 변수

action
String

작업의 이름입니다.

row
Object

작업 경로를 가져올 행입니다.

반품

지정된 행의 작업 경로입니다.

설명

작업 경로는 특정 엔터티에 대한 작업의 URL입니다. 작업 경로에는 쿼리 문자열 필터에 사용할 수 있는 기본 키 열 이름이 포함됩니다.

자세한 내용은 클래스 개요를 System.Web.DynamicData.PageAction 참조하세요.

적용 대상

GetActionPath(String, RouteValueDictionary)

현재 테이블 및 지정된 작업 및 경로에 대한 작업 경로를 반환합니다.

public:
 System::String ^ GetActionPath(System::String ^ action, System::Web::Routing::RouteValueDictionary ^ routeValues);
public:
 virtual System::String ^ GetActionPath(System::String ^ action, System::Web::Routing::RouteValueDictionary ^ routeValues);
public string GetActionPath(string action, System.Web.Routing.RouteValueDictionary routeValues);
member this.GetActionPath : string * System.Web.Routing.RouteValueDictionary -> string
abstract member GetActionPath : string * System.Web.Routing.RouteValueDictionary -> string
override this.GetActionPath : string * System.Web.Routing.RouteValueDictionary -> string
Public Function GetActionPath (action As String, routeValues As RouteValueDictionary) As String

매개 변수

action
String

작업의 이름입니다.

routeValues
RouteValueDictionary

작업에 대한 경로 목록입니다.

반품

지정된 작업 및 경로에 대한 작업 경로입니다.

설명

작업 경로는 특정 엔터티에 대한 작업의 URL입니다. 자세한 내용은 클래스 개요를 System.Web.DynamicData.PageAction 참조하세요.

적용 대상

GetActionPath(String, IList<Object>, String)

지정된 기본 키 및 가상 경로에 따라 쿼리 문자열을 작업 경로에 추가합니다.

public:
 System::String ^ GetActionPath(System::String ^ action, System::Collections::Generic::IList<System::Object ^> ^ primaryKeyValues, System::String ^ path);
public:
 virtual System::String ^ GetActionPath(System::String ^ action, System::Collections::Generic::IList<System::Object ^> ^ primaryKeyValues, System::String ^ path);
public string GetActionPath(string action, System.Collections.Generic.IList<object> primaryKeyValues, string path);
member this.GetActionPath : string * System.Collections.Generic.IList<obj> * string -> string
abstract member GetActionPath : string * System.Collections.Generic.IList<obj> * string -> string
override this.GetActionPath : string * System.Collections.Generic.IList<obj> * string -> string
Public Function GetActionPath (action As String, primaryKeyValues As IList(Of Object), path As String) As String

매개 변수

action
String

작업의 이름입니다.

primaryKeyValues
IList<Object>

기본 키를 구성하는 열 값 목록입니다.

path
String

작업의 가상 경로입니다.

반품

쿼리 문자열 값이 추가된 지정된 기본 키 및 가상 경로에 대한 작업 경로입니다.

설명

작업 경로는 특정 엔터티에 대한 작업의 URL입니다. 자세한 내용은 클래스 개요를 System.Web.DynamicData.PageAction 참조하세요.

적용 대상