RuntimeServiceGetGlobalList Method |
Namespace: Advantys.Workflow.Web.Services.Processes.Runtime
Optional Parameters.
These parameters can be used in the query string or as parameters of the Headers object in the RuntimeService class instance. See example below.
ListId (int) | Specifies the Id of the global list to get. Supercedes the list name. |
<GlobalList> <Name /> </GlobalList>
<GlobalList> <Name /> <ParticipantName /> <Content /> </GlobalList>
RuntimeServiceWebService.RuntimeService myRuntimeService = new RuntimeServiceWebService.RuntimeService(); RuntimeServiceWebService.GlobalListHeader myGlobalListHeader = new RuntimeServiceWebService.GlobalListHeader(); myRuntimeService.GlobalListHeaderValue = myGlobalListHeader; myGlobalListHeader.ListId = listId; string myGlobalListDefinition = myRuntimeService.GetGlobalList(listName, null);