MetaTable.GetActionPath 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 행에 대한 동작 경로를 가져옵니다.
오버로드
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
작업 이름입니다.
반환
지정된 동작 및 기본 키에 대한 동작 경로입니다.
설명
작업 경로는 특정 엔터티에 대한 작업의 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
작업 이름입니다.
- path
- String
동작의 가상 경로입니다.
반환
쿼리 문자열 값이 추가된 지정된 기본 키 및 가상 경로에 대한 동작 경로입니다.
설명
작업 경로는 특정 엔터티에 대한 작업의 URL입니다. 자세한 내용은 참조는 System.Web.DynamicData.PageAction 클래스 개요입니다.
적용 대상
.NET