次の方法で共有


MetaChildrenColumn.GetChildrenPath メソッド

定義

子テーブルの指定されたアクション ページのパスを取得します。

オーバーロード

GetChildrenPath(String, Object)

子テーブルの指定されたアクション ページのパスを取得します。

GetChildrenPath(String, Object, String)

子テーブルの指定されたアクション ページのパスを取得します。

GetChildrenPath(String, Object)

子テーブルの指定されたアクション ページのパスを取得します。

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

パラメーター

action
String

対象となるアクション。

row
Object

外部キー フィールドを格納している行。

戻り値

子テーブルの指定されたアクション ページのパス。

注釈

メソッドは GetChildrenPath(String, Object) 、子テーブルの指定されたアクション ページのパスを返します。 返されるパスは、ASP.NET 動的データ アプリケーションに対して定義され、指定された行を親として持つルートに基づいています。 パスは、 パラメーターで指定された外部キー フィールド値を含む URL にクエリ文字列値を row 追加することによって取得されます。

が のnull場合row、このメソッドは空の文字列を返します。

パラメーターには、 クラスで定義されている PageAction 値を action 使用できます。

こちらもご覧ください

適用対象

GetChildrenPath(String, Object, String)

子テーブルの指定されたアクション ページのパスを取得します。

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

パラメーター

action
String

対象となるアクション。

row
Object

外部キー フィールドを格納している行。

path
String

ターゲット ページ。

戻り値

子テーブルの指定されたアクション ページのパス。

注釈

メソッドは GetChildrenPath(String, Object, String) 、子テーブルの指定されたアクション ページのパスを返します。 パスは、指定した行を親として指定したパスに基づいています。 パスは、 パラメーターで指定された外部キー フィールド値を含む URL にクエリ文字列値を row 追加することによって取得されます。

が のnull場合row、このメソッドは空の文字列を返します。 が nullの場合path、 メソッドはGetChildrenPath(String, Object, String)、ASP.NET Dynamic Data アプリケーションに定義されているルートに基づいてパスを返します。

パラメーターには、 クラスで定義されている PageAction 値を action 使用できます。

こちらもご覧ください

適用対象