WorkflowManager.Get メソッド
指定されたワークフローを取得します。
名前空間: Microsoft.Workflow.Client
アセンブリ: Microsoft.Workflow.Client (Microsoft.Workflow.Client.dll 内)
オーバーロードの一覧
名前 | 説明 | |
---|---|---|
Get(Int32, Int32) | ページングによって、現在のスコープのワークフローの WorkflowDescriptions のコレクションを取得します。 |
|
Get(Int32, Int32, IDictionary<String, String>) | ページングによって、指定された metaDataFilter に一致する現在のスコープのワークフローの WorkflowDescriptions のコレクションを取得します。 |
|
Get(String) | 指定された WorkflowDescription を取得します。 |
参照
WorkflowManager クラス
Microsoft.Workflow.Client 名前空間
トップに戻る
WorkflowManager.Get メソッド (Int32, Int32)
ページングによって、現在のスコープのワークフローの WorkflowDescriptions のコレクションを取得します。
構文
public Collection<WorkflowDescription> Get(
int skip,
int count
)
public:
Collection<WorkflowDescription^>^ Get(
int skip,
int count
)
member Get :
skip:int *
count:int -> Collection<WorkflowDescription>
Public Function Get (
skip As Integer,
count As Integer
) As Collection(Of WorkflowDescription)
パラメーター
skip
Type: System.Int32スキップするワークフローの数。
count
Type: System.Int32取得するワークフローの数。
戻り値
Type: System.Collections.ObjectModel.Collection<WorkflowDescription>
取得された WorkflowDescriptions のコレクション。
トップに戻る
WorkflowManager.Get メソッド (Int32, Int32, IDictionary<String, String>)
ページングによって、指定された metaDataFilter に一致する現在のスコープのワークフローの WorkflowDescriptions のコレクションを取得します。
構文
public Collection<WorkflowDescription> Get(
int skip,
int count,
IDictionary<string, string> metadataFilter
)
public:
Collection<WorkflowDescription^>^ Get(
int skip,
int count,
IDictionary<String^, String^>^ metadataFilter
)
member Get :
skip:int *
count:int *
metadataFilter:IDictionary<string, string> -> Collection<WorkflowDescription>
Public Function Get (
skip As Integer,
count As Integer,
metadataFilter As IDictionary(Of String, String)
) As Collection(Of WorkflowDescription)
パラメーター
skip
Type: System.Int32スキップするワークフローの数。
count
Type: System.Int32取得するワークフローの数。
metadataFilter
Type: System.Collections.Generic.IDictionary<String, String>取得するワークフローの条件を指定する metaDataFilters のコレクション。
戻り値
Type: System.Collections.ObjectModel.Collection<WorkflowDescription>
取得された WorkflowDescriptions のコレクション。
トップに戻る
WorkflowManager.Get メソッド (String)
指定された WorkflowDescription を取得します。
構文
public WorkflowDescription Get(
string workflowName
)
public:
WorkflowDescription^ Get(
String^ workflowName
)
member Get :
workflowName:string -> WorkflowDescription
Public Function Get (
workflowName As String
) As WorkflowDescription
パラメーター
workflowName
Type: System.String取得するワークフローの名前。
戻り値
Type: Microsoft.Workflow.Client.WorkflowDescription
取得されたワークフローを表す WorkflowDescription。
トップに戻る